Package org.teiid.adminapi
Class AdminProcessingException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.teiid.core.TeiidException
-
- org.teiid.adminapi.AdminException
-
- org.teiid.adminapi.AdminProcessingException
-
- All Implemented Interfaces:
Serializable
public final class AdminProcessingException extends AdminException
AnAdminProcessingException
indicates that an error occured during processing as a result of user input. This exception is the result of handling an invalid user request, not the result of an internal error.This exception class is capable of containing multiple exceptions. See
AdminException
for details.- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class org.teiid.core.TeiidException
code
-
-
Constructor Summary
Constructors Constructor Description AdminProcessingException()
No-arg ctor.AdminProcessingException(String msg)
Construct with a message.AdminProcessingException(String msg, Throwable cause)
AdminProcessingException(Throwable cause)
AdminProcessingException(BundleUtil.Event code, String msg)
Construct with an optional error code and a message.AdminProcessingException(BundleUtil.Event code, Throwable cause)
AdminProcessingException(BundleUtil.Event code, Throwable cause, String msg)
-
Method Summary
-
Methods inherited from class org.teiid.adminapi.AdminException
addChild, getChildren, hasMultiple
-
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
-
AdminProcessingException
public AdminProcessingException()
No-arg ctor.- Since:
- 4.3
-
AdminProcessingException
public AdminProcessingException(String msg)
Construct with a message.- Parameters:
msg
- the error message.- Since:
- 4.3
-
AdminProcessingException
public AdminProcessingException(Throwable cause)
-
AdminProcessingException
public AdminProcessingException(BundleUtil.Event code, String msg)
Construct with an optional error code and a message.- Parameters:
code
- an optional error codemsg
- the error message.- Since:
- 4.3
-
AdminProcessingException
public AdminProcessingException(BundleUtil.Event code, Throwable cause, String msg)
-
AdminProcessingException
public AdminProcessingException(BundleUtil.Event code, Throwable cause)
-
-