Class ServiceBusRuntimeException

java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.refcodes.exception.AbstractRuntimeException
org.refcodes.servicebus.ServiceBusRuntimeException
All Implemented Interfaces:
Serializable, org.refcodes.exception.ErrorCodeAccessor, org.refcodes.exception.Trap
Direct Known Subclasses:
AmbiguousServiceRuntimeException, DuplicateServiceRuntimeException, NoMatchingServiceRuntimeException, UnknownServiceRuntimeException

public abstract class ServiceBusRuntimeException extends org.refcodes.exception.AbstractRuntimeException
Base exception for ServiceBus related runtime exceptions.
See Also:
  • Constructor Details

    • ServiceBusRuntimeException

      public ServiceBusRuntimeException(String aMessage, String aErrorCode)
      Instantiates a new service bus runtime exception.
      Parameters:
      aMessage - The aMessage describing this exception.
      aErrorCode - The error code identifying this exception.
    • ServiceBusRuntimeException

      public ServiceBusRuntimeException(String aMessage, Throwable aCause, String aErrorCode)
      Instantiates a new service bus runtime exception.
      Parameters:
      aMessage - The aMessage describing this exception.
      aCause - The Throwable (Exception) causing this exception.
      aErrorCode - The error code identifying this exception.
    • ServiceBusRuntimeException

      public ServiceBusRuntimeException(String aMessage, Throwable aCause)
      Instantiates a new service bus runtime exception.
      Parameters:
      aMessage - The aMessage describing this exception.
      aCause - The Throwable (Exception) causing this exception.
    • ServiceBusRuntimeException

      public ServiceBusRuntimeException(String aMessage)
      Instantiates a new service bus runtime exception.
      Parameters:
      aMessage - The aMessage describing this exception.
    • ServiceBusRuntimeException

      public ServiceBusRuntimeException(Throwable aCause, String aErrorCode)
      Instantiates a new service bus runtime exception.
      Parameters:
      aCause - The Throwable (Exception) causing this exception.
      aErrorCode - The error code identifying this exception.
    • ServiceBusRuntimeException

      public ServiceBusRuntimeException(Throwable aCause)
      Instantiates a new service bus runtime exception.
      Parameters:
      aCause - The Throwable (Exception) causing this exception.