Class ResourceNotFoundException

All Implemented Interfaces:
Serializable

public class ResourceNotFoundException extends ResourceIOException
A class indicating that a resource could not be found.
Author:
Garret Wilson
See Also:
  • Constructor Details

    • ResourceNotFoundException

      public ResourceNotFoundException(URI resourceURI)
      Constructs a new exception for the specified resource URI.
      Parameters:
      resourceURI - The URI of the resource to which the exception is related.
      Throws:
      NullPointerException - if the given resource URI is null.
    • ResourceNotFoundException

      public ResourceNotFoundException(URI resourceURI, String message)
      Constructs a new exception with the specified resource URI and detail message.
      Parameters:
      resourceURI - The URI of the resource to which the exception is related.
      message - The detail message.
      Throws:
      NullPointerException - if the given resource URI is null.
    • ResourceNotFoundException

      public ResourceNotFoundException(URI resourceURI, Throwable cause)
      Constructs a new exception with the specified resource URI and cause, along with a detail message derived from the cause.
      Parameters:
      resourceURI - The URI of the resource to which the exception is related.
      cause - The cause, or null to indicate the cause is nonexistent or unknown.
      Throws:
      NullPointerException - if the given resource URI is null.
    • ResourceNotFoundException

      public ResourceNotFoundException(URI resourceURI, String message, Throwable cause)
      Constructs a new exception with the specified resource URI, detail message, and cause.
      Parameters:
      resourceURI - The URI of the resource to which the exception is related.
      message - The detail message.
      cause - The cause, or null to indicate the cause is nonexistent or unknown.
      Throws:
      NullPointerException - if the given resource URI is null.