public class InternalErrorException extends KernelRuntimeException
Constructor and Description |
---|
InternalErrorException(Nameable object,
Nameable object2,
java.lang.Throwable cause,
java.lang.String detail)
Construct an exception with a detail message that includes the
names of the first argument, the name of the second argument
and the value of the third argument.
|
InternalErrorException(Nameable object,
java.lang.Throwable cause,
java.lang.String detail)
Construct an exception with a detail message that includes
the names of the first argument plus the third argument
string.
|
InternalErrorException(java.lang.String detail)
Construct an exception with a detail message.
|
InternalErrorException(java.lang.Throwable cause)
Construct an exception with only a cause.
|
_setCause, _setMessage, getCause, getMessage, getNameables, printStackTrace, printStackTrace, printStackTrace
public InternalErrorException(java.lang.String detail)
detail
- The message.public InternalErrorException(java.lang.Throwable cause)
This constructor is commonly used when we want to catch an exception and rethrow it as a RuntimeException so that the method where the exception is thrown need not declare that this method throws the initial exception.
cause
- The cause of this exception.public InternalErrorException(Nameable object, java.lang.Throwable cause, java.lang.String detail)
object
- The object associated with this exception.cause
- The cause of this exception.detail
- The message.public InternalErrorException(Nameable object, Nameable object2, java.lang.Throwable cause, java.lang.String detail)
object
- The first object associated with this exception.object2
- The second object associated with this exception.cause
- The cause of this exception.detail
- The message.