1 *java.util.ServiceConfigurationError* *ServiceConfigurationError* Error thrown w
3 public class ServiceConfigurationError
4 extends |java.lang.Error|
6 |java.util.ServiceConfigurationError_Description|
7 |java.util.ServiceConfigurationError_Fields|
8 |java.util.ServiceConfigurationError_Constructors|
9 |java.util.ServiceConfigurationError_Methods|
11 ================================================================================
13 *java.util.ServiceConfigurationError_Constructors*
14 |java.util.ServiceConfigurationError(String)|Constructs a new instance with the
15 |java.util.ServiceConfigurationError(String,Throwable)|Constructs a new instanc
17 *java.util.ServiceConfigurationError_Description*
19 Error thrown when something goes wrong while loading a service provider.
21 This error will be thrown in the following situations:
25 The format of a provider-configuration file violates the specification;
27 An IOException(|java.io.IOException|) occurs while reading a
28 provider-configuration file;
30 A concrete provider class named in a provider-configuration file cannot be
33 A concrete provider class is not a subclass of the service class;
35 A concrete provider class cannot be instantiated; or
37 Some other kind of error occurs.
43 *java.util.ServiceConfigurationError(String)*
45 public ServiceConfigurationError(java.lang.String msg)
47 Constructs a new instance with the specified message.
49 msg - The message, or null if there is no message
51 *java.util.ServiceConfigurationError(String,Throwable)*
53 public ServiceConfigurationError(
55 java.lang.Throwable cause)
57 Constructs a new instance with the specified message and cause.
59 msg - The message, or null if there is no message
60 cause - The cause, or null if the cause is nonexistent or unknown