org.ogf.saga.error
Class DoesNotExistException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by org.ogf.saga.error.SagaException
              extended by org.ogf.saga.error.DoesNotExistException
All Implemented Interfaces:
Serializable, Comparable<SagaException>, Iterable<SagaException>

public class DoesNotExistException
extends SagaException

This exception indicates that an operation cannot succeed because a required entity is missing.

See Also:
Serialized Form

Field Summary
 
Fields inherited from class org.ogf.saga.error.SagaException
ALREADY_EXISTS, AUTHENTICATION_FAILED, AUTHORIZATION_FAILED, BAD_PARAMETER, DOES_NOT_EXIST, INCORRECT_STATE, INCORRECT_URL, IO_EXCEPTION, NO_SUCCESS, NOT_IMPLEMENTED, PERMISSION_DENIED, TIMEOUT
 
Constructor Summary
DoesNotExistException()
          Constructs a DoesNotExist exception.
DoesNotExistException(String message)
          Constructs a DoesNotExist exception with the specified detail message.
DoesNotExistException(String message, SagaObject object)
          Constructs a DoesNotExist exception with the specified detail message and associated SAGA object.
DoesNotExistException(String message, Throwable cause)
          Constructs a DoesNotExist exception with the specified detail message and cause.
DoesNotExistException(String detail, Throwable cause, SagaObject object)
          Constructs a new DoesNotExistException with the specified detail message, specified cause and associated SAGA object.
DoesNotExistException(Throwable cause)
          Constructs a DoesNotExist exception with the specified cause.
DoesNotExistException(Throwable cause, SagaObject object)
          Constructs a new DoesNotExistException with the specified cause and associated SAGA object.
 
Method Summary
 
Methods inherited from class org.ogf.saga.error.SagaException
addNestedException, compareTo, getAllExceptions, getAllMessages, getObject, iterator, toString
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

DoesNotExistException

public DoesNotExistException()
Constructs a DoesNotExist exception.


DoesNotExistException

public DoesNotExistException(String message)
Constructs a DoesNotExist exception with the specified detail message.

Parameters:
message - the detail message.

DoesNotExistException

public DoesNotExistException(Throwable cause)
Constructs a DoesNotExist exception with the specified cause.

Parameters:
cause - the cause.

DoesNotExistException

public DoesNotExistException(String message,
                             Throwable cause)
Constructs a DoesNotExist exception with the specified detail message and cause.

Parameters:
message - the detail message.
cause - the cause.

DoesNotExistException

public DoesNotExistException(String message,
                             SagaObject object)
Constructs a DoesNotExist exception with the specified detail message and associated SAGA object.

Parameters:
message - the detail message.
object - the associated SAGA object.

DoesNotExistException

public DoesNotExistException(Throwable cause,
                             SagaObject object)
Constructs a new DoesNotExistException with the specified cause and associated SAGA object.

Parameters:
cause - the cause.
object - the SAGA object associated with the exception.

DoesNotExistException

public DoesNotExistException(String detail,
                             Throwable cause,
                             SagaObject object)
Constructs a new DoesNotExistException with the specified detail message, specified cause and associated SAGA object.

Parameters:
detail - the detail message.
cause - the cause.
object - the SAGA object associated with the exception.


Copyright © 2014 Open Grid Forum. All rights reserved.