public class InteractionException extends L10NMessageImpl
InteractionService
framework.Constructor and Description |
---|
InteractionException(String message)
Constructor
|
InteractionException(String rbName,
String errorCode,
Object[] args)
Constructor
Constructs an instance of
InteractionException to
pass the localized error message
At this level, the locale of the caller is not known and it is
not possible to throw localized error message. |
InteractionException(Throwable nestedException)
Constructor
|
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
public InteractionException(String message)
message
- message for the exceptionpublic InteractionException(Throwable nestedException)
nestedException
- Throwable
nested in this exception.public InteractionException(String rbName, String errorCode, Object[] args)
InteractionException
to
pass the localized error message
At this level, the locale of the caller is not known and it is
not possible to throw localized error message.
Instead this constructor provides Resource Bundle name and error code
for correctly locating the error message. The default
getMessage()
will always return English messages only. This
is consistent with current JRE.rbName
- Resource Bundle Name to be used for getting
localized error message.errorCode
- Key to resource bundle. You can use
ResourceBundle rb = ResourceBunde.getBundle (rbName,locale); String localizedStr = rb.getString(errorCode);
args
- arguments to message. If it is not present pass them
as nullCopyright © 2010-2018, ForgeRock All Rights Reserved.