Package com.ptc.windchill.esi.rnd
Class ESIRendererException
java.lang.Object
java.lang.Throwable
java.lang.Exception
wt.util.WTException
com.ptc.windchill.esi.utl.ESIException
com.ptc.windchill.esi.rnd.ESIRendererException
- All Implemented Interfaces:
Serializable,LocalizableMessage,Message
- Direct Known Subclasses:
ExpressionRendererException
Subclass of ESIException (and therefore of WTException) which allows clients to determine that the exception was
thrown by an ESIRenderer.
Supported API: true
Extendable: true
Supported API: true
Extendable: true
- See Also:
-
Field Summary
Fields inherited from class wt.util.WTException
GETMESSAGE_LINE_SEPARATOR, LINE_SEPARATOR, SPACE_SEPARATOR, TOSTRING_LINE_SEPARATOR -
Constructor Summary
ConstructorsConstructorDescriptionDefault constructor
Supported API: trueConstructs an ESIRendererException with an input Exception object.Constructs an ESIRendererException with an input localizable standard message.ESIRendererException(String rb, String key, Object[] params) Constructs a ESIRendererException with a localizable standard message constructed from the bundle, key, and params.ESIRendererException(Throwable t, String rb, String key, Object[] params) Constructs a ESIRendererException with nested throwable, the bundle, key, and params. -
Method Summary
Methods inherited from class com.ptc.windchill.esi.utl.ESIException
getErrorCode, setErrorCodeMethods inherited from class wt.util.WTException
getAdditionalMessageArray, getAdditionalMessages, getAdditionalMessages, getExceptionIdentifier, getLocalizedMessage, getLocalizedMessage, getLocalizedMessage, getLocalizedMessage, getNestedExceptionString, getNestedExceptionString, getNestedThrowable, getStandardMessage, getStandardMessage, getWTMessage, printStackTrace, printStackTrace, printStackTrace, setLocalizedMessage, toString, toStringMethods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getMessage, getStackTrace, getSuppressed, initCause, setStackTrace
-
Constructor Details
-
ESIRendererException
public ESIRendererException()Default constructor
Supported API: true -
ESIRendererException
Constructs an ESIRendererException with an input localizable standard message.
Supported API: true- Parameters:
msg- - exception message
-
ESIRendererException
Constructs an ESIRendererException with an input Exception object.
Supported API: true- Parameters:
e- - Exception
-
ESIRendererException
Constructs a ESIRendererException with a localizable standard message constructed from the bundle, key, and params.
Supported API: true- Parameters:
rb- the resource bundle the key resides inkey- the key containing the message in the resource bundleparams- the parameters to substitute in the message
-
ESIRendererException
Constructs a ESIRendererException with nested throwable, the bundle, key, and params.
Supported API: true- Parameters:
t- the nested throwablerb- the resource bundle the key resides inkey- the key containing the message in the resource bundleparams- the parameters to substitute in the message
-