Package org.teiid.dqp.service
Class SessionServiceException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.teiid.core.TeiidException
-
- org.teiid.core.TeiidProcessingException
-
- org.teiid.client.security.TeiidSecurityException
-
- org.teiid.dqp.service.SessionServiceException
-
- All Implemented Interfaces:
Serializable
public class SessionServiceException extends TeiidSecurityException
- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class org.teiid.core.TeiidException
code
-
-
Constructor Summary
Constructors Constructor Description SessionServiceException()
No-Arg ConstructorSessionServiceException(String message)
Constructs an instance of the exception with the specified detail message.SessionServiceException(Throwable e)
Constructs an instance of the exception with no detail message but with a single exception.SessionServiceException(Throwable e, String message)
Constructs an instance of the exception with the specified detail message and a single exception.SessionServiceException(BundleUtil.Event code, String message)
Construct an instance with an error code and message specified.SessionServiceException(BundleUtil.Event code, Throwable e, String message)
Construct an instance with a linked exception, and an error code and message, specified.
-
Method Summary
-
Methods inherited from class org.teiid.core.TeiidException
getCode, getMessage, getOriginalType, setCode, setOriginalType
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
SessionServiceException
public SessionServiceException()
No-Arg Constructor
-
SessionServiceException
public SessionServiceException(String message)
Constructs an instance of the exception with the specified detail message. A detail message is a String that describes this particular exception.- Parameters:
message
- the detail message
-
SessionServiceException
public SessionServiceException(Throwable e)
Constructs an instance of the exception with no detail message but with a single exception.- Parameters:
e
- the exception that is encapsulated by this exception
-
SessionServiceException
public SessionServiceException(Throwable e, String message)
Constructs an instance of the exception with the specified detail message and a single exception. A detail message is a String that describes this particular exception.- Parameters:
message
- the detail messagee
- the exception that is encapsulated by this exception
-
SessionServiceException
public SessionServiceException(BundleUtil.Event code, String message)
Construct an instance with an error code and message specified.- Parameters:
message
- The error messagecode
- The error code
-
SessionServiceException
public SessionServiceException(BundleUtil.Event code, Throwable e, String message)
Construct an instance with a linked exception, and an error code and message, specified.- Parameters:
e
- An exception to chain to this exceptionmessage
- The error messagecode
- The error code
-
-