Class QueueFullException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- java.lang.IllegalStateException
-
- io.servicetalk.concurrent.internal.QueueFullException
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
QueueFullAndRejectedSubscribeException
public class QueueFullException extends java.lang.IllegalStateException
Exception indicating a bounded queue is full.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description QueueFullException(java.lang.String queueIdentifier)
Create a new instance.QueueFullException(java.lang.String queueIdentifier, int capacity)
Create a new instance.
-
-
-
Constructor Detail
-
QueueFullException
public QueueFullException(java.lang.String queueIdentifier)
Create a new instance.- Parameters:
queueIdentifier
- Identifier for the queue that is full.
-
QueueFullException
public QueueFullException(java.lang.String queueIdentifier, int capacity)
Create a new instance.- Parameters:
queueIdentifier
- Identifier for the queue that is full.capacity
- Capacity for the queue.
-
-