Class ResourceFinderException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.glassfish.jersey.server.internal.scanning.ResourceFinderException
-
- All Implemented Interfaces:
Serializable
public class ResourceFinderException extends RuntimeException
An runtime exception that may be thrown when scanning.- Author:
- Paul Sandoz
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ResourceFinderException()Construct a new instance with the supplied messageResourceFinderException(String message)Construct a new instance with the supplied messageResourceFinderException(String message, Throwable cause)Construct a new instance with the supplied message and causeResourceFinderException(Throwable cause)Construct a new instance with the supplied 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
-
ResourceFinderException
public ResourceFinderException()
Construct a new instance with the supplied message
-
ResourceFinderException
public ResourceFinderException(String message)
Construct a new instance with the supplied message- Parameters:
message- the message
-
ResourceFinderException
public ResourceFinderException(String message, Throwable cause)
Construct a new instance with the supplied message and cause- Parameters:
message- the messagecause- the Throwable that caused the exception to be thrown
-
ResourceFinderException
public ResourceFinderException(Throwable cause)
Construct a new instance with the supplied cause- Parameters:
cause- the Throwable that caused the exception to be thrown
-
-