Package org.xwiki.resource
Class UnsupportedResourceReferenceException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.xwiki.resource.UnsupportedResourceReferenceException
-
- All Implemented Interfaces:
Serializable
public class UnsupportedResourceReferenceException extends Exception
Means the Resource Reference is of a type for which we don't have an implementation for.- Since:
- 6.1M2
- Version:
- $Id: 2bf641c9cf71c068cfb722890af18e1332771619 $
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description UnsupportedResourceReferenceException(String message)
UnsupportedResourceReferenceException(String message, Throwable throwable)
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
UnsupportedResourceReferenceException
public UnsupportedResourceReferenceException(String message)
- Parameters:
message
- The detailed message. This can later be retrieved by the Throwable.getMessage() method.
-
UnsupportedResourceReferenceException
public UnsupportedResourceReferenceException(String message, Throwable throwable)
- 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)
-
-