All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.intarsys.tools.provider.ProviderConfigurationException Maven / Gradle / Ivy

There is a newer version: 4.11
Show newest version
/*
 * @(#)ServiceConfigurationError.java	1.5 06/04/10
 *
 * Copyright 2006 Sun Microsystems, Inc. All rights reserved.
 * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
 */

package de.intarsys.tools.provider;

/**
 * Error thrown when something goes wrong while loading a service provider.
 * 
 */

public class ProviderConfigurationException extends RuntimeException {

	/**
	 * Constructs a new instance with the specified message.
	 * 
	 * @param msg
	 *            The message, or null if there is no message
	 * 
	 */
	public ProviderConfigurationException(String msg) {
		super(msg);
	}

	/**
	 * Constructs a new instance with the specified message and cause.
	 * 
	 * @param msg
	 *            The message, or null if there is no message
	 * 
	 * @param cause
	 *            The cause, or null if the cause is nonexistent or
	 *            unknown
	 */
	public ProviderConfigurationException(String msg, Throwable cause) {
		super(msg, cause);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy