FileDocCategorySizeDatePackage
ServiceConfigurationError.javaAPI DocExample2971Tue May 29 16:56:38 BST 2007com.sun.xml.ws.policy.privateutil

ServiceConfigurationError

public class ServiceConfigurationError extends 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.
author
Mark Reinhold
version
1.7, 03/12/19
since
1.3

Fields Summary
Constructors Summary
public ServiceConfigurationError(String message)
Constructs a new instance with the specified detail string.

        super(message);
    
public ServiceConfigurationError(Throwable throwable)
Constructs a new instance that wraps the specified throwable.

        super(throwable);
    
Methods Summary