org.osgi.framework.hooks.weaving.WeavingException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aspectjtools Show documentation
Show all versions of aspectjtools Show documentation
Tools from the AspectJ project
/*
* Copyright (c) OSGi Alliance (2010, 2020). 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.framework.hooks.weaving;
/**
* A weaving exception used to indicate that the class load should be failed but
* the weaving hook must not be deny listed by the framework.
*
* This exception conforms to the general purpose exception chaining mechanism.
*
* @author $Id: 29ebe6460fbe20ce8037f14a162c72f633b1de31 $
*/
public class WeavingException extends RuntimeException {
private static final long serialVersionUID = 1L;
/**
* Creates a {@code WeavingException} with the specified message and
* exception cause.
*
* @param msg The associated message.
* @param cause The cause of this exception.
*/
public WeavingException(String msg, Throwable cause) {
super(msg, cause);
}
/**
* Creates a {@code WeavingException} with the specified message.
*
* @param msg The message.
*/
public WeavingException(String msg) {
super(msg);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy