Package org.apache.synapse.message
Class StoreForwardException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.apache.synapse.message.StoreForwardException
-
- All Implemented Interfaces:
Serializable
public class StoreForwardException extends Exception
Checked exception for Message Store / Processor related packages- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description StoreForwardException(String message)
Constructor for StoreForwardExceptionStoreForwardException(String message, Throwable throwable)
Constructor for StoreForwardException
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
StoreForwardException
public StoreForwardException(String message)
Constructor for StoreForwardException- Parameters:
message
- message in exception
-
StoreForwardException
public StoreForwardException(String message, Throwable throwable)
Constructor for StoreForwardException- Parameters:
message
- the detail message (which is saved for later retrieval by theThrowable.getMessage()
method).throwable
- the cause (which is saved for later retrieval by theThrowable.getCause()
method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)
-
-