Package io.github.resilience4j.bulkhead
Class BulkheadFullException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- io.github.resilience4j.bulkhead.BulkheadFullException
-
- All Implemented Interfaces:
java.io.Serializable
public class BulkheadFullException extends java.lang.RuntimeExceptionABulkheadFullExceptionsignals that the bulkhead is full.- See Also:
- Serialized Form
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static BulkheadFullExceptioncreateBulkheadFullException(Bulkhead bulkhead)Static method to construct aBulkheadFullExceptionwith a Bulkhead.static BulkheadFullExceptioncreateBulkheadFullException(ThreadPoolBulkhead bulkhead)Static method to construct aBulkheadFullExceptionwith a ThreadPoolBulkhead.
-
-
-
Method Detail
-
createBulkheadFullException
public static BulkheadFullException createBulkheadFullException(Bulkhead bulkhead)
Static method to construct aBulkheadFullExceptionwith a Bulkhead.- Parameters:
bulkhead- the Bulkhead.
-
createBulkheadFullException
public static BulkheadFullException createBulkheadFullException(ThreadPoolBulkhead bulkhead)
Static method to construct aBulkheadFullExceptionwith a ThreadPoolBulkhead.- Parameters:
bulkhead- the Bulkhead.
-
-