com.infoengine.SAK
Class IeServiceException

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended byjavax.servlet.jsp.JspException
              extended bycom.infoengine.util.IEException
                  extended bycom.infoengine.exception.fatal.IEFatalException
                      extended bycom.infoengine.exception.fatal.IEFatalServiceException
                          extended bycom.infoengine.SAK.IeServiceException
All Implemented Interfaces:
LocalizableMessage, Serializable

public class IeServiceException
extends IEFatalServiceException

See Also:
Serialized Form

Field Summary
 
Fields inherited from class com.infoengine.util.IEException
GETMESSAGE_LINE_SEPARATOR, TOSTRING_LINE_SEPARATOR
 
Fields inherited from class javax.servlet.jsp.JspException
 
Fields inherited from class java.lang.Exception
 
Fields inherited from class java.lang.Throwable
 
Constructor Summary
IeServiceException()
          Constructs an Info*Engine exception with no specified detailed message or embedded throwable object.
IeServiceException(String s)
          Constructs an Info*Engine exception with a non-localizable detailed message.
IeServiceException(String rb, String key, Object[] params)
          Constructs an Info*Engine exception with a localizable message.
IeServiceException(Throwable t)
          Constructs an Info*Engine exception with an embedded throwable.
IeServiceException(Throwable t, String s)
          Constructs an Info*Engine exception with an embedded Throwable object and non-localizable detailed message.
IeServiceException(Throwable t, String rb, String key, Object[] params)
          Constructs an Info*Engine exception with a throwable and localized message.
 
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
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getStackTrace, initCause, printStackTrace, setStackTrace
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

IeServiceException

public IeServiceException()
Constructs an Info*Engine exception with no specified detailed message or embedded throwable object.


IeServiceException

public IeServiceException(String s)
Constructs an Info*Engine exception with a non-localizable detailed message.

Parameters:
s - the detailed message

IeServiceException

public IeServiceException(String rb,
                          String key,
                          Object[] params)
Constructs an Info*Engine exception with a localizable message.

Parameters:
rb - name of the base resource bundle
key - the key associated with the resource bundle message
params - an optional set of objects to be formatted into the localizable message text.

IeServiceException

public IeServiceException(Throwable t)
Constructs an Info*Engine exception with an embedded throwable.

Parameters:
t - the throwable object

IeServiceException

public IeServiceException(Throwable t,
                          String s)
Constructs an 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.

IeServiceException

public IeServiceException(Throwable t,
                          String rb,
                          String key,
                          Object[] params)
Constructs an Info*Engine exception with a throwable and localized message.

Parameters:
t - the throwable object
rb - name of the base resource bundle
key - the key associated with the resource bundle message
params - an optional set of objects to be formatted into the localizable message text.