Class InternalClientErrorException

All Implemented Interfaces:
Serializable, org.refcodes.exception.ErrorCodeAccessor, org.refcodes.exception.Trap, org.refcodes.mixin.StatusCodeAccessor<HttpStatusCode>

public class InternalClientErrorException extends HttpStatusException
Proprietary code and only used inside a REFCODES.ORG client not trespassing any networking border (the error is generated by the client for the client locally). This code is used is used when a client signals the business logic that internal client processing failed even though the response was received fine.
See Also:
  • Constructor Details

    • InternalClientErrorException

      public InternalClientErrorException(String aMessage, String aErrorCode)
      Instantiates a new internal client error exception.
      Parameters:
      aMessage - The aMessage describing this exception.
      aErrorCode - The error code identifying this exception.
    • InternalClientErrorException

      public InternalClientErrorException(String aMessage, Throwable aCause, String aErrorCode)
      Instantiates a new internal client error exception.
      Parameters:
      aMessage - The aMessage describing this exception.
      aCause - The Throwable (Exception) causing this exception.
      aErrorCode - The error code identifying this exception.
    • InternalClientErrorException

      public InternalClientErrorException(String aMessage, Throwable aCause)
      Instantiates a new internal client error exception.
      Parameters:
      aMessage - The aMessage describing this exception.
      aCause - The Throwable (Exception) causing this exception.
    • InternalClientErrorException

      public InternalClientErrorException(String aMessage)
      Instantiates a new internal client error exception.
      Parameters:
      aMessage - The aMessage describing this exception.
    • InternalClientErrorException

      public InternalClientErrorException(Throwable aCause, String aErrorCode)
      Instantiates a new internal client error exception.
      Parameters:
      aCause - The Throwable (Exception) causing this exception.
      aErrorCode - The error code identifying this exception.
    • InternalClientErrorException

      public InternalClientErrorException(Throwable aCause)
      Instantiates a new internal client error exception.
      Parameters:
      aCause - The Throwable (Exception) causing this exception.