Class NotFoundException

All Implemented Interfaces:
Serializable

public class NotFoundException extends HttpException

A HTTP exception that indicates that a resource was Not Found (404) on the server.

Since:
1.0
Author:
Jeremy Kuhn
See Also:
  • Constructor Details

    • NotFoundException

      public NotFoundException()

      Creates a not found exception.

    • NotFoundException

      public NotFoundException(String message)

      Creates a not found exception with the specified message.

      Parameters:
      message - a message
    • NotFoundException

      public NotFoundException(Throwable cause)

      Creates a not found exception with the specified cause.

      Parameters:
      cause - a cause
    • NotFoundException

      public NotFoundException(String message, Throwable cause)

      Creates a not found exception with the specified message and cause.

      Parameters:
      message - a message
      cause - a cause