wt.admin
Class AdministrativeDomainException

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended bywt.util.WTException
              extended bywt.admin.AdministrativeDomainException
All Implemented Interfaces:
LocalizableMessage, Message, Serializable
Direct Known Subclasses:
PolicyRuleAlreadyExistsException, PolicyRuleDoesNotExistException

public class AdministrativeDomainException
extends WTException
implements Serializable

Exception thrown when an error occurs during the processing of administrative objects. Supports localization of messages.

Supported API: true

Extendable: false

See Also:
Serialized Form

Field Summary
private static String CLASSNAME
           
private static String RESOURCE
           
 
Fields inherited from class wt.util.WTException
GETMESSAGE_LINE_SEPARATOR, LINE_SEPARATOR, SPACE_SEPARATOR, TOSTRING_LINE_SEPARATOR
 
Fields inherited from class java.lang.Exception
 
Fields inherited from class java.lang.Throwable
 
Constructor Summary
AdministrativeDomainException()
          Noarg constructor.
AdministrativeDomainException(Exception e)
          Constructs an administrative domain exception that wraps another exception.
AdministrativeDomainException(Exception e, String msg)
          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.
 
Methods inherited from class wt.util.WTException
getAdditionalMessageArray, getAdditionalMessages, getAdditionalMessages, getLocalizedMessage, getLocalizedMessage, getLocalizedMessage, getLocalizedMessage, getNestedExceptionString, getNestedExceptionString, getNestedThrowable, getStandardMessage, getStandardMessage, printStackTrace, printStackTrace, printStackTrace, setLocalizedMessage, toString, toString
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getMessage, getStackTrace, initCause, setStackTrace
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

RESOURCE

private static final String RESOURCE
See Also:
Constant Field Values

CLASSNAME

private static final String CLASSNAME
Constructor Detail

AdministrativeDomainException

public AdministrativeDomainException()
Noarg constructor.

Supported API: true


AdministrativeDomainException

public AdministrativeDomainException(String message)
Constructor that takes o non-localized message.

Supported API: true

Parameters:
message -

AdministrativeDomainException

public AdministrativeDomainException(Exception e)
Constructs an administrative domain exception that wraps another exception.

Supported API: true

Parameters:
e -

AdministrativeDomainException

public AdministrativeDomainException(Exception e,
                                     String msg)
Constructs an administrative domain message that wraps another exception and has a non-localized message.

Supported API: true

Parameters:
e -
msg -

AdministrativeDomainException

public AdministrativeDomainException(String rb,
                                     String key,
                                     Object[] params)
Constructs an administrative domain exception with a localizable detailed message.

Supported API: true

Parameters:
rb -
key -
params -

AdministrativeDomainException

public AdministrativeDomainException(Exception e,
                                     String rb,
                                     String key,
                                     Object[] params)
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 -