org.drools.ProviderInitializationException Maven / Gradle / Ivy
package org.drools;
/*
* Copyright 2005 JBoss Inc
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
* If a provider is not set on a factory it will attempt to initialise one, typically using reflection.
* If an issue occured while doing this a ProviderInitializationException is created.
*
* @see RuntimeException
*
*/
public class ProviderInitializationException extends RuntimeException {
/**
*
*/
private static final long serialVersionUID = 400L;
/**
* @see java.lang.Exception#Exception()
*/
public ProviderInitializationException() {
super();
}
/**
* @see java.lang.Exception#Exception(String message)
*/
public ProviderInitializationException(final String message) {
super( message );
}
/**
* @see java.lang.Exception#Exception(String message, Throwable cause)
*/
public ProviderInitializationException(final String message,
final Throwable cause) {
super( message,
cause );
}
/**
* @see java.lang.Exception#Exception(Throwable cause)
*/
public ProviderInitializationException(final Throwable cause) {
super( cause );
}
}