More information


de.spieleck.pcs.action
Class ActionException

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

public class ActionException
extends java.lang.Exception

This exception is used when Exception or Error occurs during performing an action.

See Also:
Action, Serialized Form

Constructor Summary
ActionException()
          Creates a new instance of ActionException without detail message.
ActionException(java.lang.String msg)
          Constructs an instance of ActionException 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

ActionException

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

ActionException

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

More information