org.axonframework.saga
Class SagaStorageException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by org.axonframework.common.AxonException
                  extended by org.axonframework.common.AxonTransientException
                      extended by org.axonframework.saga.SagaStorageException
All Implemented Interfaces:
Serializable

public class SagaStorageException
extends AxonTransientException

Exception indicating that an error has occurred while storing a Saga.

Since:
0.7
Author:
Allard Buijze
See Also:
Serialized Form

Constructor Summary
SagaStorageException(String message)
          Initialize a SagaStorageException with the given descriptive message.
SagaStorageException(String message, Throwable cause)
          Initialize a SagaStorageException with the given descriptive message and cause.
 
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

SagaStorageException

public SagaStorageException(String message)
Initialize a SagaStorageException with the given descriptive message.

Parameters:
message - The message describing the error.

SagaStorageException

public SagaStorageException(String message,
                            Throwable cause)
Initialize a SagaStorageException with the given descriptive message and cause.

Parameters:
message - The message describing the error.
cause - The cause of the error.


Copyright © 2010-2016. All Rights Reserved.