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