Package org.wso2.carbon.queuing
Class QueuingException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.wso2.carbon.queuing.QueuingException
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
QueueEmptyException
public class QueuingException extends Exception
A generic exception that is thrown for errors that occur when using the Queuing API.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description QueuingException()Constructs a new exception.QueuingException(String message)Constructs a new exception with the specified detail message.QueuingException(String message, Throwable cause)Constructs a new exception with the specified detail message and cause.QueuingException(Throwable cause)Constructs a new exception with the specified cause.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
QueuingException
public QueuingException()
Constructs a new exception.
-
QueuingException
public QueuingException(String message)
Constructs a new exception with the specified detail message.- Parameters:
message- the detail message.
-
QueuingException
public QueuingException(String message, Throwable cause)
Constructs a new exception with the specified detail message and cause.- Parameters:
message- the detail message.cause- the cause of this exception.
-
QueuingException
public QueuingException(Throwable cause)
Constructs a new exception with the specified cause.- Parameters:
cause- the cause of this exception.
-
-