More information


de.spieleck.pcs.http
Class ControllerException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--de.spieleck.pcs.http.ControllerException
All Implemented Interfaces:
java.io.Serializable

public class ControllerException
extends java.lang.Exception

Exception class used by Controller

See Also:
Serialized Form

Constructor Summary
ControllerException()
          Creates a new instance of ControllerException without detail message.
ControllerException(java.lang.String msg)
          Constructs an instance of ControllerException with the specified detail message.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getMessage, printStackTrace, printStackTrace, printStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

ControllerException

public ControllerException()
Creates a new instance of ControllerException without detail message.

ControllerException

public ControllerException(java.lang.String msg)
Constructs an instance of ControllerException with the specified detail message.
Parameters:
msg - the detail message.

More information