Class PageNotFoundException

java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
bayern.steinbrecher.wizard.PageNotFoundException
All Implemented Interfaces:
java.io.Serializable

public class PageNotFoundException
extends java.lang.RuntimeException
Signals that a wizard page having a certain key could not be found.
Author:
Stefan Huber
See Also:
Serialized Form
  • Constructor Summary

    Constructors 
    Constructor Description
    PageNotFoundException()
    Constructs an PageNotFoundException without detail message and no cause.
    PageNotFoundException​(java.lang.String message)
    Constructs an PageNotFoundException with detail message but no cause.
    PageNotFoundException​(java.lang.String message, java.lang.Throwable cause)
    Constructs an PageNotFoundException with given detail message and cause.
    PageNotFoundException​(java.lang.Throwable cause)
    Constructs an PageNotFoundException 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

    • PageNotFoundException

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

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

      public PageNotFoundException​(java.lang.String message, java.lang.Throwable cause)
      Constructs an PageNotFoundException with given detail message and cause.
      Parameters:
      message - The detail message to show.
      cause - The cause of this exception.
    • PageNotFoundException

      public PageNotFoundException​(java.lang.Throwable cause)
      Constructs an PageNotFoundException without detail message but with given cause.
      Parameters:
      cause - The cause of this exception.