Module iu.util
Package edu.iu

Class IuBadRequestException

All Implemented Interfaces:
Serializable

public class IuBadRequestException extends RuntimeException
Thrown by an application or incoming request handler to represent an invalid incoming requests.

Should be caught and handled as 400 BAD REUEST by an outbound web request boundary. Should not be handled by application-layer business logic.Should not be thrown as the result of a server or downstream service error.

See Also:
  • Constructor Details

    • IuBadRequestException

      public IuBadRequestException()
      Default constructor.
    • IuBadRequestException

      public IuBadRequestException(String message)
      Default constructor.
      Parameters:
      message - message
    • IuBadRequestException

      public IuBadRequestException(Throwable cause)
      Default constructor.
      Parameters:
      cause - cause
    • IuBadRequestException

      public IuBadRequestException(String message, Throwable cause)
      Default constructor.
      Parameters:
      message - message
      cause - cause