Class DuplicateServiceRuntimeException

  • All Implemented Interfaces:
    ServiceAccessor


    public class DuplicateServiceRuntimeException
    extends ServiceBusRuntimeException
    This exception is thrown whenever a service, which cannot be distinguished from another service, is added to the service bus. In such a case, no matcher would be able to match exactly one of them services, we would end up with a non deterministic system.
    See Also:
    Serialized Form
    • Nested Class Summary

      • Nested classes/interfaces inherited from interface org.refcodes.exception.ErrorCodeAccessor

        org.refcodes.exception.ErrorCodeAccessor.ErrorCodeBuilder<B extends org.refcodes.exception.ErrorCodeAccessor.ErrorCodeBuilder<B>>, org.refcodes.exception.ErrorCodeAccessor.ErrorCodeMutator, org.refcodes.exception.ErrorCodeAccessor.ErrorCodeProperty
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      Service getService​()
      Gets the service.
      • Methods inherited from class org.refcodes.exception.AbstractRuntimeException

        getErrorCode
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
      • Methods inherited from class java.lang.Throwable

        addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
    • Constructor Detail

      • DuplicateServiceRuntimeException

        public DuplicateServiceRuntimeException​(Service<?> aService,
                                                java.lang.String aMessage,
                                                java.lang.String aErrorCode)
        Instantiates a new duplicate service runtime exception.
        Parameters:
        aService - the service
        aMessage - the message
        aErrorCode - the error code
      • DuplicateServiceRuntimeException

        public DuplicateServiceRuntimeException​(Service<?> aService,
                                                java.lang.String aMessage,
                                                java.lang.Throwable aCause,
                                                java.lang.String aErrorCode)
        Instantiates a new duplicate service runtime exception.
        Parameters:
        aService - the service
        aMessage - the message
        aCause - the cause
        aErrorCode - the error code
      • DuplicateServiceRuntimeException

        public DuplicateServiceRuntimeException​(Service<?> aService,
                                                java.lang.String message,
                                                java.lang.Throwable cause)
        Instantiates a new duplicate service runtime exception.
        Parameters:
        aService - the service
        message - the message
        cause - the cause
      • DuplicateServiceRuntimeException

        public DuplicateServiceRuntimeException​(Service<?> aService,
                                                java.lang.String message)
        Instantiates a new duplicate service runtime exception.
        Parameters:
        aService - the service
        message - the message
      • DuplicateServiceRuntimeException

        public DuplicateServiceRuntimeException​(Service<?> aService,
                                                java.lang.Throwable aCause,
                                                java.lang.String aErrorCode)
        Instantiates a new duplicate service runtime exception.
        Parameters:
        aService - the service
        aCause - the cause
        aErrorCode - the error code
      • DuplicateServiceRuntimeException

        public DuplicateServiceRuntimeException​(Service<?> aService,
                                                java.lang.Throwable cause)
        Instantiates a new duplicate service runtime exception.
        Parameters:
        aService - the service
        cause - the cause