Package bayern.steinbrecher.wizard
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.
- Since:
- 1.0
- Author:
- Stefan Huber
- See Also:
- Serialized Form
-
Constructor Summary
Constructors Constructor Description PageNotFoundException()Constructs anPageNotFoundExceptionwithout detail message and no cause.PageNotFoundException(java.lang.String message)Constructs anPageNotFoundExceptionwith detail message but no cause.PageNotFoundException(java.lang.String message, java.lang.Throwable cause)Constructs anPageNotFoundExceptionwith given detail message and cause.PageNotFoundException(java.lang.Throwable cause)Constructs anPageNotFoundExceptionwithout detail message but with given cause. -
Method Summary
-
Constructor Details
-
PageNotFoundException
public PageNotFoundException()Constructs anPageNotFoundExceptionwithout detail message and no cause. -
PageNotFoundException
public PageNotFoundException(java.lang.String message)Constructs anPageNotFoundExceptionwith detail message but no cause.- Parameters:
message- The detail message to show.
-
PageNotFoundException
public PageNotFoundException(java.lang.String message, java.lang.Throwable cause)Constructs anPageNotFoundExceptionwith 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 anPageNotFoundExceptionwithout detail message but with given cause.- Parameters:
cause- The cause of this exception.
-