gcs
Class GcsException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by gcs.GcsException
All Implemented Interfaces:
java.io.Serializable
Direct Known Subclasses:
SpreadGcsException

public abstract class GcsException
extends java.lang.Exception

Whenever an error occurs in classes from gcs package or they subclasses, the GcsException is thrown.

Author:
tkob
See Also:
Serialized Form

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

GcsException

protected GcsException()
Default constructor, creates empty GcsException.


GcsException

protected GcsException(java.lang.String message)
Constructor which takes a message for the argument.

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

GcsException

protected GcsException(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

GcsException

protected GcsException(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