public class IllegalActionException extends KernelException
Examples include:
| Green (cxh) |
| Green (cxh) |
| Constructor and Description |
|---|
IllegalActionException(Nameable object)
Construct an exception with a detail message that is only the
name of the argument.
|
IllegalActionException(Nameable object1,
Nameable object2)
Construct an exception with a detail message that consists of
only the names of the object1 and object2 arguments.
|
IllegalActionException(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.
|
IllegalActionException(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.
|
IllegalActionException(Nameable object,
java.lang.String detail)
Construct an exception with a detail message that includes the
name of the first argument.
|
IllegalActionException(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.
|
IllegalActionException(java.lang.String detail)
Construct an exception with a detail message.
|
_setCause, _setMessage, generateMessage, generateMessage, generateMessage, getCause, getFullName, getMessage, getName, getNameable1, getNameable2, printStackTrace, printStackTrace, printStackTrace, stackTraceToStringpublic IllegalActionException(java.lang.String detail)
detail - The message.public IllegalActionException(Nameable object)
object - The object.public IllegalActionException(Nameable object, java.lang.String detail)
object - The object.detail - The message.public IllegalActionException(Nameable object, java.lang.Throwable cause, java.lang.String detail)
object - The object.cause - The cause of this exception, or null if the cause
is not known or nonexistent.detail - The message.public IllegalActionException(Nameable object1, Nameable object2)
object1 - The first object.object2 - The second object.public IllegalActionException(Nameable object1, Nameable object2, java.lang.String detail)
object1 - The first object.object2 - The second object.detail - The message.public IllegalActionException(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, or null if the cause
is not known or nonexistent.detail - The message.