java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
edu.internet2.middleware.grouperClientExt.org.apache.commons.lang3.concurrent.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:
  • Constructor Details

    • 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