Package wt.admin
Class AdministrativeDomainException
java.lang.Object
java.lang.Throwable
java.lang.Exception
wt.util.WTException
wt.admin.AdministrativeDomainException
- All Implemented Interfaces:
Serializable,LocalizableMessage,Message
Exception thrown when an error occurs during the processing of administrative
objects. Supports localization of messages.
Supported API: true
Extendable: false
Supported API: true
Extendable: false
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionNo arg constructor.Constructs an administrative domain exception that wraps another exception.Constructs an administrative domain message that wraps another exception and has a non-localized message.AdministrativeDomainException(Exception e, String rb, String key, Object[] params) Constructs an administrative domain message that wraps another exception and has a localized message.AdministrativeDomainException(String message) Constructor that takes o non-localized message.AdministrativeDomainException(String rb, String key, Object[] params) Constructs an administrative domain exception with a localizable detailed message. -
Method Summary
Methods inherited from class wt.util.WTException
getAdditionalMessageArray, getAdditionalMessages, getAdditionalMessages, getLocalizedMessage, getLocalizedMessage, getLocalizedMessage, getNestedExceptionString, getNestedExceptionString, getNestedThrowable, getStandardMessage, getStandardMessage, getWTMessage, printStackTrace, printStackTrace, printStackTrace, toString, toStringMethods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getMessage, getStackTrace, getSuppressed, initCause, setStackTrace
-
Constructor Details
-
AdministrativeDomainException
public AdministrativeDomainException()No arg constructor.
Supported API: true -
AdministrativeDomainException
Constructor that takes o non-localized message.
Supported API: true- Parameters:
message-
-
AdministrativeDomainException
Constructs an administrative domain exception that wraps another exception.
Supported API: true- Parameters:
e-
-
AdministrativeDomainException
Constructs an administrative domain message that wraps another exception and has a non-localized message.
Supported API: true- Parameters:
e-msg-
-
AdministrativeDomainException
Constructs an administrative domain exception with a localizable detailed message.
Supported API: true- Parameters:
rb-key-params-
-
AdministrativeDomainException
Constructs an administrative domain message that wraps another exception and has a localized message. The resource bundle, the key and the inserts are passed as arguments
Supported API: true- Parameters:
e-rb-key-params-
-