org.mockcentral.server
Class MockCentralServerException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by org.mockcentral.server.MockCentralServerException
All Implemented Interfaces:
java.io.Serializable
Direct Known Subclasses:
UnknownVariableException

public class MockCentralServerException
extends java.lang.RuntimeException

RuntimeException class for application exceptions generated within the server package.

Author:
David Hutchinson
See Also:
Serialized Form

Constructor Summary
MockCentralServerException(java.lang.String message)
          Creates a new instance with the supplied message.
MockCentralServerException(java.lang.String message, java.lang.Throwable t)
          Creates a new instance with the supplied message and nested Throwable.
MockCentralServerException(java.lang.Throwable t)
          Creates a new instance with the supplied nested Throwable.
 
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

MockCentralServerException

public MockCentralServerException(java.lang.String message)
Creates a new instance with the supplied message.

Parameters:
message - the Exception message.

MockCentralServerException

public MockCentralServerException(java.lang.Throwable t)
Creates a new instance with the supplied nested Throwable.

Parameters:
t - the nested Throwable.

MockCentralServerException

public MockCentralServerException(java.lang.String message,
                                  java.lang.Throwable t)
Creates a new instance with the supplied message and nested Throwable.

Parameters:
message - the Exception message.
t - the nested Throwable.