com.monkeycoder.monkeynetwork
Class MonkeyException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by com.monkeycoder.monkeynetwork.MonkeyException
All Implemented Interfaces:
java.io.Serializable

public class MonkeyException
extends java.lang.Exception

Generic exception class for exceptions thrown by the MonkeyNetwork system.

Author:
David Stephens
See Also:
Serialized Form

Constructor Summary
MonkeyException()
          Constructs a new exception with null as its detail message.
MonkeyException(java.lang.String message)
          Constructs a new exception with the specified detail message.
MonkeyException(java.lang.String message, java.lang.Throwable cause)
          Constructs a new exception with the specified detail message and cause.
MonkeyException(java.lang.Throwable cause)
          Constructs a new exception with the specified cause.
 
Method Summary
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

MonkeyException

public MonkeyException()
Constructs a new exception with null as its detail message.


MonkeyException

public MonkeyException(java.lang.String message)
Constructs a new exception with the specified detail message.


MonkeyException

public MonkeyException(java.lang.String message,
                       java.lang.Throwable cause)
Constructs a new exception with the specified detail message and cause.


MonkeyException

public MonkeyException(java.lang.Throwable cause)
Constructs a new exception with the specified cause. The detail message of will be null if a null cause is used or it will be the string form of the cause.