com.infoengine.exception.fatal
Class IEFatalException
java.lang.Object
java.lang.Throwable
java.lang.Exception
javax.servlet.jsp.JspException
com.infoengine.util.IEException
com.infoengine.exception.fatal.IEFatalException
- All Implemented Interfaces:
- LocalizableMessage, Serializable
- Direct Known Subclasses:
- IEFatalClientException, IEFatalServiceException
- public class IEFatalException
- extends IEException
- See Also:
- Serialized Form
Fields inherited from class javax.servlet.jsp.JspException |
|
Fields inherited from class java.lang.Exception |
|
Fields inherited from class java.lang.Throwable |
|
Methods inherited from class com.infoengine.util.IEException |
getLocalizedMessage, getLocalizedMessage, getLocalizedMessage, getLocalizedMessage, getmessage, getMessage, getNestedExceptionString, getNestedExceptionString, getNestedThrowable, printStackTrace, printStackTrace, setLocalizedMessage, toString, toString |
Methods inherited from class javax.servlet.jsp.JspException |
getRootCause |
IEFatalException
public IEFatalException()
- Constructs a Info*Engine exception with no specified
detailed message or embedded throwable object.
IEFatalException
public IEFatalException(String s)
- Constructs a Info*Engine exception with a non-localizable detailed
message.
- Parameters:
s
- the detailed message
IEFatalException
public IEFatalException(String rb,
String key,
Object[] params)
- Constructs a Info*Engine exception with a localizable
detailed message.
IEFatalException
public IEFatalException(Throwable t)
- Constructs a Info*Engine exception with a throwable.
- Parameters:
t
- the throwable object
IEFatalException
public IEFatalException(Throwable t,
String s)
- Constructs a Info*Engine exception with an embedded Throwable object
and non-localizable detailed message.
- Parameters:
t
- the embedded Throwable. It may be null.s
- the detailed message. It may be null.
IEFatalException
public IEFatalException(Throwable t,
String rb,
String key,
Object[] params)
- Constructs a Info*Engine exception with an embedded Throwable
object and a localizable detailed message.
- Parameters:
t
- the embedded Throwable. It may be null.rb
- the name of the base resource bundle subclass containing
the localizable message.key
- the key associated with the localizable messageparams
- an optional set of objects to be formatted into
the localizable message text.