Package dev.failsafe
Class BulkheadFullException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- dev.failsafe.FailsafeException
-
- dev.failsafe.BulkheadFullException
-
- All Implemented Interfaces:
java.io.Serializable
public class BulkheadFullException extends FailsafeException
Thrown when an execution is attempted against aBulkhead
that is full.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private Bulkhead<?>
bulkhead
private static long
serialVersionUID
-
Constructor Summary
Constructors Constructor Description BulkheadFullException(Bulkhead<?> bulkhead)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Bulkhead<?>
getBulkhead()
Returns theBulkhead
that caused the exception.
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
bulkhead
private final Bulkhead<?> bulkhead
-
-
Constructor Detail
-
BulkheadFullException
public BulkheadFullException(Bulkhead<?> bulkhead)
-
-