Package org.teiid.client.security
Class TeiidSecurityException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.teiid.core.TeiidException
-
- org.teiid.core.TeiidProcessingException
-
- org.teiid.client.security.TeiidSecurityException
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
InvalidSessionException
,LogonException
,SessionServiceException
public class TeiidSecurityException extends TeiidProcessingException
- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class org.teiid.core.TeiidException
code
-
-
Constructor Summary
Constructors Constructor Description TeiidSecurityException()
No-Arg ConstructorTeiidSecurityException(String message)
Constructs an instance of the exception with the specified detail message.TeiidSecurityException(Throwable e)
Constructs an instance of the exception with no detail message but with a single exception.TeiidSecurityException(Throwable e, String message)
Constructs an instance of the exception with the specified detail message and a single exception.TeiidSecurityException(BundleUtil.Event code, String message)
Construct an instance with an error code and message specified.TeiidSecurityException(BundleUtil.Event code, Throwable t, 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
-
TeiidSecurityException
public TeiidSecurityException()
No-Arg Constructor
-
TeiidSecurityException
public TeiidSecurityException(BundleUtil.Event code, Throwable t, String message)
Construct an instance with a linked exception, and an error code and message, specified.- Parameters:
t
- An exception to chain to this exceptionmessage
- The error messagecode
- The error code
-
TeiidSecurityException
public TeiidSecurityException(BundleUtil.Event code, String message)
Construct an instance with an error code and message specified.- Parameters:
message
- The error messagecode
- The error code
-
TeiidSecurityException
public TeiidSecurityException(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
-
TeiidSecurityException
public TeiidSecurityException(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
-
TeiidSecurityException
public TeiidSecurityException(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
-
-