blob: b846bafe99166538af9cb0bba4509b0d2e2abd8c [file] [log] [blame]
/**
*
* Copyright 2005-2006 The Apache Software Foundation or its licensors, as applicable.
*
* 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.
*/
package org.apache.xbean.kernel;
/**
* A problem occured while creating or using the kernel factory. This error indicates that the kernel factory is
* misconfigured or there is a programming error in the use of the kernel factory.
*
* @author Dain Sundstrom
* @version $Id$
* @since 2.0
*/
public class KernelFactoryError extends Error {
/**
* Creates a KernelFactoryError using the specified message.
*
* @param message information about the cause of this error
*/
public KernelFactoryError(String message) {
super(message);
}
/**
* Creates a KernelFactoryError using the specified message and cause.
*
* @param message information about the cause of this error
* @param cause the cause of this error
*/
public KernelFactoryError(String message, Throwable cause) {
super(message, cause);
}
}