public class InvalidStateException extends KernelRuntimeException
Green (cxh) |
Green (cxh) |
Constructor and Description |
---|
InvalidStateException(java.util.Collection objects,
java.lang.String detail)
Constructs an exception with a detail message that includes the
names of a collection of nameable objects plus the argument string.
|
InvalidStateException(java.util.Collection objects,
java.lang.Throwable cause,
java.lang.String detail)
Constructs an exception with a detail message that includes the
names of a collection of nameable objects plus the argument string.
|
InvalidStateException(java.util.Enumeration objects,
java.lang.String detail)
Deprecated.
Use InvalidStateException(Collection, String) instead.
|
InvalidStateException(Nameable object1,
Nameable object2,
java.lang.String detail)
Construct an exception with a detail message that includes the
names of the first two arguments plus the third argument string.
|
InvalidStateException(Nameable object1,
Nameable object2,
java.lang.Throwable cause,
java.lang.String detail)
Construct an exception with a detail message that includes the
names of the first two arguments plus the third argument string.
|
InvalidStateException(Nameable object,
java.lang.String detail)
Construct an exception with a detail message that includes the
name of the first argument and the second argument string.
|
InvalidStateException(Nameable object,
java.lang.Throwable cause,
java.lang.String detail)
Construct an exception with a detail message that includes the
name of the first argument, the cause and the third argument string.
|
InvalidStateException(java.lang.String detail)
Construct an exception with only a detail message.
|
_setCause, _setMessage, getCause, getMessage, getNameables, printStackTrace, printStackTrace, printStackTrace
public InvalidStateException(java.lang.String detail)
detail
- The message.public InvalidStateException(Nameable object, java.lang.Throwable cause, java.lang.String detail)
object
- The nameable object involved in the exceptioncause
- The cause of this exception.detail
- The message.public InvalidStateException(Nameable object, java.lang.String detail)
object
- The object.detail
- The message.public InvalidStateException(Nameable object1, Nameable object2, java.lang.String detail)
object1
- The first object.object2
- The second object.detail
- The message.public InvalidStateException(Nameable object1, Nameable object2, java.lang.Throwable cause, java.lang.String detail)
object1
- The first object.object2
- The second object.cause
- The cause of this exception.detail
- The message.@Deprecated public InvalidStateException(java.util.Enumeration objects, java.lang.String detail)
objects
- The enumeration of Nameable objectsdetail
- The message.public InvalidStateException(java.util.Collection objects, java.lang.String detail)
objects
- The Collection of Nameable objectsdetail
- The message.public InvalidStateException(java.util.Collection objects, java.lang.Throwable cause, java.lang.String detail)
objects
- The Collection of Nameable objectscause
- The cause of this exception.detail
- The message.