Class IllegalCallableException

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.
Since:
1.0
Author:
Stefan Huber
See Also:
Serialized Form
  • Constructor Summary

    Constructors 
    Constructor Description
    IllegalCallableException()
    Constructs an IllegalCallableException without detail message and no cause.
    IllegalCallableException​(java.lang.String message)
    Constructs an IllegalCallableException with detail message but no cause.
    IllegalCallableException​(java.lang.String message, java.lang.Throwable cause)
    Constructs an IllegalCallableException with given detail message and cause.
    IllegalCallableException​(java.lang.Throwable cause)
    Constructs an IllegalCallableException without detail message but with given cause.
  • Method Summary

    Methods inherited from class java.lang.Throwable

    addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
  • Constructor Details

    • IllegalCallableException

      public IllegalCallableException()
      Constructs an IllegalCallableException without detail message and no cause.
    • IllegalCallableException

      public IllegalCallableException​(java.lang.String message)
      Constructs an IllegalCallableException with detail message but no cause.
      Parameters:
      message - The detail message to show.
    • IllegalCallableException

      public IllegalCallableException​(java.lang.String message, java.lang.Throwable cause)
      Constructs an IllegalCallableException with 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 an IllegalCallableException without detail message but with given cause.
      Parameters:
      cause - The cause of this exception.