org.myskua.sac.client
Class SacClientTargetException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by org.myskua.sac.client.SacClientException
              extended by org.myskua.sac.client.SacClientTargetException
All Implemented Interfaces:
java.io.Serializable

public class SacClientTargetException
extends SacClientException

An exception to be thrown when a SAC or MetaSAC operation is attempted on an entity that doesn't exist (for example, deleting a non-existent SAC).

Author:
Kona Andrews, SKUA Project, kea@roe.ac.uk
See Also:
Serialized Form

Constructor Summary
SacClientTargetException(java.lang.String message)
          This constructor should not be used when catching and rethrowing exceptions, only when generating fresh exceptions.
SacClientTargetException(java.lang.String message, java.lang.Throwable cause)
          Constructor taking the cause of the error (an exception/error) and a message describing the context.
SacClientTargetException(java.lang.Throwable cause)
          Convenience constructor that just takes the cause of the error.
 
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

SacClientTargetException

public SacClientTargetException(java.lang.String message,
                                java.lang.Throwable cause)
Constructor taking the cause of the error (an exception/error) and a message describing the context.


SacClientTargetException

public SacClientTargetException(java.lang.Throwable cause)
Convenience constructor that just takes the cause of the error.


SacClientTargetException

public SacClientTargetException(java.lang.String message)
This constructor should not be used when catching and rethrowing exceptions, only when generating fresh exceptions.