Package org.xwiki.resource
Class ResourceReferenceHandlerException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.xwiki.resource.ResourceReferenceHandlerException
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
NotFoundResourceHandlerException
public class ResourceReferenceHandlerException extends Exception
Represents a problem when handling aResourceReference
.- Since:
- 6.1M2
- Version:
- $Id: 1cc07e5dda7ba1538ade408a24a6ff8838fc6699 $
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ResourceReferenceHandlerException(String message)
Construct a new exception with the specified detail message.ResourceReferenceHandlerException(String message, Throwable throwable)
Construct a new exception with the specified detail message and cause.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
ResourceReferenceHandlerException
public ResourceReferenceHandlerException(String message)
Construct a new exception with the specified detail message.- Parameters:
message
- The detailed message. This can later be retrieved by the Throwable.getMessage() method.
-
ResourceReferenceHandlerException
public ResourceReferenceHandlerException(String message, Throwable throwable)
Construct a new exception with the specified detail message and cause.- Parameters:
message
- The detailed message. This can later be retrieved by the Throwable.getMessage() method.throwable
- the cause. This can be retrieved later by the Throwable.getCause() method. (A null value is permitted, and indicates that the cause is nonexistent or unknown)
-
-