Package org.wso2.carbon.queuing
Class QueueEmptyException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.wso2.carbon.queuing.QueuingException
-
- org.wso2.carbon.queuing.QueueEmptyException
-
- All Implemented Interfaces:
Serializable
public class QueueEmptyException extends QueuingException
This is thrown when a queue is empty.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description QueueEmptyException()Constructs a new exception.QueueEmptyException(String message)Constructs a new exception with the specified detail message.QueueEmptyException(String message, Throwable cause)Constructs a new exception with the specified detail message and cause.QueueEmptyException(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
-
QueueEmptyException
public QueueEmptyException()
Constructs a new exception.
-
QueueEmptyException
public QueueEmptyException(String message)
Constructs a new exception with the specified detail message.- Parameters:
message- the detail message.
-
QueueEmptyException
public QueueEmptyException(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.
-
QueueEmptyException
public QueueEmptyException(Throwable cause)
Constructs a new exception with the specified cause.- Parameters:
cause- the cause of this exception.
-
-