restgroupsServer
Class RestGroupsException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by restgroupsServer.RestGroupsException
All Implemented Interfaces:
java.io.Serializable

public class RestGroupsException
extends java.lang.Exception

Custom exception type for RestGroups.

Author:
tkob
See Also:
Serialized Form

Constructor Summary
RestGroupsException()
          Default constructor, creates empty RestGroupsException.
RestGroupsException(java.lang.String message)
          Constructor which takes a message for the argument.
RestGroupsException(java.lang.String message, java.lang.Throwable cause)
          Constructor which takes both, a message and a Throwable object for its arguments.
RestGroupsException(java.lang.Throwable cause)
          Constructor which takes a Throwable object for the argument.
 
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

RestGroupsException

public RestGroupsException()
Default constructor, creates empty RestGroupsException.


RestGroupsException

public RestGroupsException(java.lang.String message)
Constructor which takes a message for the argument.

Parameters:
message - a message to be conveyed by this exception

RestGroupsException

public RestGroupsException(java.lang.Throwable cause)
Constructor which takes a Throwable object for the argument.

Parameters:
cause - a Throwable object, which for instance causes this exception to be thrown

RestGroupsException

public RestGroupsException(java.lang.String message,
                           java.lang.Throwable cause)
Constructor which takes both, a message and a Throwable object for its arguments.

Parameters:
message - a message to be conveyed by this exception
cause - a Throwable object, which for instance causes this exception to be thrown