Class UnknownResourceException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.polarion.platform.service.repository.RepositoryException
com.polarion.platform.service.repository.ResourceException
com.polarion.platform.service.repository.UnknownResourceException
- All Implemented Interfaces:
Serializable
Raised when resource was not found.
- Author:
- Stepan Roh, Polarion Software
- See Also:
-
Constructor Summary
ConstructorDescriptionUnknownResourceException
(ILocation resource) Exception without message and cause.UnknownResourceException
(ILocation resource, String message) Exception with message and without cause.UnknownResourceException
(ILocation resource, String message, Throwable cause) Exception with message and cause.UnknownResourceException
(ILocation resource, Throwable cause) Exception without message and with cause. -
Method Summary
Methods inherited from class com.polarion.platform.service.repository.ResourceException
getResource
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
UnknownResourceException
Exception without message and cause.- Parameters:
resource
- resource location (should be absolute if possible)
-
UnknownResourceException
Exception with message and without cause.- Parameters:
resource
- resource location (should be absolute if possible)message
- detail message
-
UnknownResourceException
Exception without message and with cause.- Parameters:
resource
- resource location (should be absolute if possible)cause
- exception cause
-
UnknownResourceException
Exception with message and cause.- Parameters:
resource
- resource location (should be absolute if possible)message
- detail messagecause
- exception cause
-