wt.project
Class ProjectException

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended bywt.util.WTException
              extended bywt.project.ProjectException
All Implemented Interfaces:
LocalizableMessage, Message, Serializable

public class ProjectException
extends WTException
implements Serializable

Provides an abstraction of an abnormal occurrence or error in the usage or processing of the ProjectService.

Supported API: false

Extendable: false

See Also:
WTException, 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
ProjectException()
          Constructs a new exception.
ProjectException(Exception e)
          Constructs a new exception using an Exception.
ProjectException(Exception e, String s)
          Constructs a new exception from a nested exception and a string.
ProjectException(Exception e, String rb, String key, Object[] params)
          Constructs a new exception with a nested exception from a resource bundle, it's key and an array of objects for insertion into the keyed resource bundles' message.
ProjectException(String s)
          Constructs a new exception using a String.
ProjectException(String rb, String key, Object[] params)
          Constructs a new exception from a resource bundle, it's key, and an array of objects for insertion into the keyed resource bundle's 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

ProjectException

public ProjectException()
Constructs a new exception.

Supported API: false


ProjectException

public ProjectException(String s)
Constructs a new exception using a String.

Supported API: false

Parameters:
s - a string used to create the ProjectException

ProjectException

public ProjectException(Exception e)
Constructs a new exception using an Exception.

Supported API: false

Parameters:
e - an exception used to create the ProjectException

ProjectException

public ProjectException(String rb,
                        String key,
                        Object[] params)
Constructs a new exception from a resource bundle, it's key, and an array of objects for insertion into the keyed resource bundle's message.

Supported API: false

Parameters:
rb - name of the resource bundle used to create the ProjectException
key - name of the resource bundle's key used to create the ProjectException
params - array of objects for insertion into the keyed resource bundle's message

ProjectException

public ProjectException(Exception e,
                        String s)
Constructs a new exception from a nested exception and a string.

Supported API: false

Parameters:
e - a nested exception used to create the ProjectException
s - a string used to create the ProjectException

ProjectException

public ProjectException(Exception e,
                        String rb,
                        String key,
                        Object[] params)
Constructs a new exception with a nested exception from a resource bundle, it's key and an array of objects for insertion into the keyed resource bundles' message.

Supported API: false

Parameters:
e - an exception used to create the ProjectException
rb - name of the resource bundle used to create the ProjectException
key - name of the resource bundle's key used to create the ProjectException
params - array of objects for insertion into the keyed resource bundle's ProjectException