Serializable
public class CircuitBreakingException extends RuntimeException
An exception class used for reporting runtime error conditions related to circuit breakers.
Constructor | Description |
---|---|
CircuitBreakingException() |
Creates a new, uninitialized instance of
CircuitBreakingException . |
CircuitBreakingException(String message) |
Creates a new instance of
CircuitBreakingException and initializes it with the given message. |
CircuitBreakingException(String message,
Throwable cause) |
Creates a new instance of
CircuitBreakingException and initializes it with the given message and cause. |
CircuitBreakingException(Throwable cause) |
Creates a new instance of
CircuitBreakingException and initializes it with the given cause. |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
public CircuitBreakingException()
CircuitBreakingException
.public CircuitBreakingException(String message, Throwable cause)
CircuitBreakingException
and initializes it with the given message and cause.message
- the error messagecause
- the cause of this exceptionpublic CircuitBreakingException(String message)
CircuitBreakingException
and initializes it with the given message.message
- the error messagepublic CircuitBreakingException(Throwable cause)
CircuitBreakingException
and initializes it with the given cause.cause
- the cause of this exceptionCopyright © 2001–2018. All rights reserved.