com.sun.tools.ws.util.ServiceConfigurationError Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jaxws-tools Show documentation
Show all versions of jaxws-tools Show documentation
Open source Reference Implementation of JSR-224: Java API for XML Web Services
The newest version!
/*
* Copyright (c) 1997, 2022 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Distribution License v. 1.0, which is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
package com.sun.tools.ws.util;
/**
* 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
*/
public class ServiceConfigurationError extends Error {
private static final long serialVersionUID = 758261763386354606L;
/**
* Constructs a new instance with the specified detail string.
*/
public ServiceConfigurationError(String msg) {
super(msg);
}
/**
* Constructs a new instance that wraps the specified throwable.
*/
public ServiceConfigurationError(Throwable x) {
super(x);
}
}