org.osgi.service.blueprint.container.ComponentDefinitionException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of osgi.cmpn Show documentation
Show all versions of osgi.cmpn Show documentation
OSGi Compendium Release 7, Interfaces and Classes for use in compiling bundles
/*
* Copyright (c) OSGi Alliance (2008, 2013). All Rights Reserved.
*
* 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.osgi.service.blueprint.container;
/**
* A Blueprint exception indicating that a component definition is in error.
*
* This exception is thrown when a configuration-related error occurs during
* creation of a Blueprint Container.
*
* @author $Id: 83cb6e4bc069805ee9796c0e933ef6d5344bcf46 $
*/
public class ComponentDefinitionException extends RuntimeException {
private static final long serialVersionUID = 1L;
/**
* Creates a Component Definition Exception with no message or exception
* cause.
*/
public ComponentDefinitionException() {
super();
}
/**
* Creates a Component Definition Exception with the specified message
*
* @param explanation The associated message.
*/
public ComponentDefinitionException(String explanation) {
super(explanation);
}
/**
* Creates a Component Definition Exception with the specified message and
* exception cause.
*
* @param explanation The associated message.
* @param cause The cause of this exception.
*/
public ComponentDefinitionException(String explanation, Throwable cause) {
super(explanation, cause);
}
/**
* Creates a Component Definition Exception with the exception cause.
*
* @param cause The cause of this exception.
*/
public ComponentDefinitionException(Throwable cause) {
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy