Class ResourceException

java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.onehippo.cms7.crisp.api.resource.ResourceException
All Implemented Interfaces:
Serializable

public class ResourceException extends RuntimeException
The ResourceException class defines a general exception that any CRISP Resource operations can throw when it is unable to perform its operation successfully.
See Also:
  • Constructor Details

    • ResourceException

      public ResourceException()
      Constructs a new Resource exception.
    • ResourceException

      public ResourceException(String message)
      Constructs a new Resource exception with the given message.
      Parameters:
      message - the exception message
    • ResourceException

      public ResourceException(Throwable nested)
      Constructs a new Resource exception with the nested exception.
      Parameters:
      nested - the nested exception
    • ResourceException

      public ResourceException(String message, Throwable nested)
      Constructs a new Resource exception with the given message and a nested exception.
      Parameters:
      message - the exception message
      nested - the nested exception