Package org.glassfish.jersey.internal
Class ServiceConfigurationError
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Error
-
- org.glassfish.jersey.internal.ServiceConfigurationError
-
- All Implemented Interfaces:
java.io.Serializable
public class ServiceConfigurationError extends java.lang.Error
Error thrown when something goes wrong while looking up service providers. In particular, this error will be thrown in the following situations:- A concrete provider class cannot be found,
- A concrete provider class cannot be instantiated,
- The format of a provider-configuration file is illegal, or
- An IOException occurs while reading a provider-configuration file.
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private static long
serialVersionUID
-
Constructor Summary
Constructors Constructor Description ServiceConfigurationError(java.lang.String msg)
Constructs a new instance with the specified detail string.ServiceConfigurationError(java.lang.Throwable x)
Constructs a new instance that wraps the specified throwable.
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
ServiceConfigurationError
public ServiceConfigurationError(java.lang.String msg)
Constructs a new instance with the specified detail string.- Parameters:
msg
- the detail string
-
ServiceConfigurationError
public ServiceConfigurationError(java.lang.Throwable x)
Constructs a new instance that wraps the specified throwable.- Parameters:
x
- the throwable to be wrapped
-
-