Module iu.util
Package edu.iu

Class IuNotFoundException

All Implemented Interfaces:
Serializable

public class IuNotFoundException extends RuntimeException
Thrown by an application or incoming request handler to represent a missing resource or unrecoverable security error, i.e., penetration attempt.

Should be caught and handled as 404 NOT FOUND by an outbound web request boundary. May be handled by application-layer business logic; in the event of an unrecoverable security error, the application must log the attempt. Should not be thrown as the result of a server or downstream service error.

See Also:
  • Constructor Details

    • IuNotFoundException

      public IuNotFoundException()
      Default constructor.
    • IuNotFoundException

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

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

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