Class CircuitBreakingException

  • All Implemented Interfaces:
    Serializable

    public class CircuitBreakingException
    extends RuntimeException

    An exception class used for reporting runtime error conditions related to circuit breakers.

    Since:
    3.5
    See Also:
    Serialized Form
    • Constructor Detail

      • CircuitBreakingException

        public CircuitBreakingException()
        Creates a new, uninitialized instance of CircuitBreakingException.
      • CircuitBreakingException

        public CircuitBreakingException​(String message,
                                        Throwable cause)
        Creates a new instance of CircuitBreakingException and initializes it with the given message and cause.
        Parameters:
        message - the error message
        cause - the cause of this exception
      • CircuitBreakingException

        public CircuitBreakingException​(String message)
        Creates a new instance of CircuitBreakingException and initializes it with the given message.
        Parameters:
        message - the error message
      • CircuitBreakingException

        public CircuitBreakingException​(Throwable cause)
        Creates a new instance of CircuitBreakingException and initializes it with the given cause.
        Parameters:
        cause - the cause of this exception