Class NotReadableResourceException

All Implemented Interfaces:
Serializable

public class NotReadableResourceException extends ResourceException

Thrown when trying to read a resource that is not readable.

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

    • NotReadableResourceException

      public NotReadableResourceException()

      Creates a not readable resource exception.

    • NotReadableResourceException

      public NotReadableResourceException(String message)

      Creates a not readable resource exception with the specified message.

      Parameters:
      message - the message
    • NotReadableResourceException

      public NotReadableResourceException(Throwable cause)

      Creates a not readable resource exception with the specified cause.

      Parameters:
      cause - the cause
    • NotReadableResourceException

      public NotReadableResourceException(String message, Throwable cause)

      Creates a not readable resource exception with the specified message and cause.

      Parameters:
      message - the message
      cause - the cause
    • NotReadableResourceException

      public NotReadableResourceException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace)

      Creates a not readable resource exception with the specified message, cause, suppression enabled or disabled and writable stack trace enabled or disabled.

      Parameters:
      message - the message
      cause - the cause
      enableSuppression - true to enable suppression, false otherwise
      writableStackTrace - true to make the stack trace writable, false otherwise