Package de.xima.fc.exceptions
Class ResourceAccessCheckException
- java.lang.Object
 - 
- java.lang.Throwable
 - 
- java.lang.Exception
 - 
- de.xima.fc.exceptions.ResourceAccessCheckException
 
 
 
 
- 
- All Implemented Interfaces:
 Serializable
public final class ResourceAccessCheckException extends Exception
Exception that is thrown when access to a resource could not be checked due an unhandled or unforeseen error.- Since:
 - 7.0.10
 - Author:
 - XIMA MEDIA GmbH
 - See Also:
 - Serialized Form
 
 
- 
- 
Constructor Summary
Constructors Constructor Description ResourceAccessCheckException(URI resource)Creates a new exception for when access to a resource could not be checked.ResourceAccessCheckException(URI resource, String message)Creates a new exception for when access to a resource could not be checked.ResourceAccessCheckException(URI resource, String message, Throwable cause)Creates a new exception for when access to a resource could not be checked.ResourceAccessCheckException(URI resource, Throwable cause)Creates a new exception for when access to a resource could not be checked.ResourceAccessCheckException(URL resource)ResourceAccessCheckException(URL resource, String message)Creates a new exception for when access to a resource could not be checked.ResourceAccessCheckException(URL resource, String message, Throwable cause)Creates a new exception for when access to a resource could not be checked.ResourceAccessCheckException(URL resource, Throwable cause)Creates a new exception for when access to a resource could not be checked. 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetResource()- 
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString 
 - 
 
 - 
 
- 
- 
Constructor Detail
- 
ResourceAccessCheckException
public ResourceAccessCheckException(URI resource)
Creates a new exception for when access to a resource could not be checked.- Parameters:
 resource- The resource that could not be checked.
 
- 
ResourceAccessCheckException
public ResourceAccessCheckException(URI resource, String message)
Creates a new exception for when access to a resource could not be checked.- Parameters:
 resource- The resource that could not be checked.message- Error message detailing the reason why the check failed.
 
- 
ResourceAccessCheckException
public ResourceAccessCheckException(URI resource, String message, Throwable cause)
Creates a new exception for when access to a resource could not be checked.- Parameters:
 resource- The resource that could not be checked.message- Error message detailing the reason why the check failed.cause- Underlying cause that made the check fail.
 
- 
ResourceAccessCheckException
public ResourceAccessCheckException(URI resource, Throwable cause)
Creates a new exception for when access to a resource could not be checked.- Parameters:
 resource- The resource that could not be checked.cause- Underlying cause that made the check fail.
 
- 
ResourceAccessCheckException
public ResourceAccessCheckException(URL resource)
 
- 
ResourceAccessCheckException
public ResourceAccessCheckException(URL resource, String message)
Creates a new exception for when access to a resource could not be checked.- Parameters:
 resource- The resource that could not be checked.message- Error message detailing the reason why the check failed.
 
- 
ResourceAccessCheckException
public ResourceAccessCheckException(URL resource, String message, Throwable cause)
Creates a new exception for when access to a resource could not be checked.- Parameters:
 resource- The resource that could not be checked.message- Error message detailing the reason why the check failed.cause- Underlying cause that made the check fail.
 
 - 
 
- 
Method Detail
- 
getResource
public String getResource()
- Returns:
 - The resource that could not be checked.
 
 
 - 
 
 -