java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
bayern.steinbrecher.wizard.IllegalCallableException
- All Implemented Interfaces:
java.io.Serializable
public class IllegalCallableException
extends java.lang.RuntimeException
Signals that calling a
Callable of a page has thrown an exception.- Author:
- Stefan Huber
- See Also:
- Serialized Form
-
Constructor Summary
Constructors Constructor Description IllegalCallableException()Constructs anIllegalCallableExceptionwithout detail message and no cause.IllegalCallableException(java.lang.String message)Constructs anIllegalCallableExceptionwith detail message but no cause.IllegalCallableException(java.lang.String message, java.lang.Throwable cause)Constructs anIllegalCallableExceptionwith given detail message and cause.IllegalCallableException(java.lang.Throwable cause)Constructs anIllegalCallableExceptionwithout detail message but with given cause. -
Method Summary
-
Constructor Details
-
IllegalCallableException
public IllegalCallableException()Constructs anIllegalCallableExceptionwithout detail message and no cause. -
IllegalCallableException
public IllegalCallableException(java.lang.String message)Constructs anIllegalCallableExceptionwith detail message but no cause.- Parameters:
message- The detail message to show.
-
IllegalCallableException
public IllegalCallableException(java.lang.String message, java.lang.Throwable cause)Constructs anIllegalCallableExceptionwith given detail message and cause.- Parameters:
message- The detail message to show.cause- The cause of this exception.
-
IllegalCallableException
public IllegalCallableException(java.lang.Throwable cause)Constructs anIllegalCallableExceptionwithout detail message but with given cause.- Parameters:
cause- The cause of this exception.
-