Package org.osgi.framework.hooks.weaving
Class WeavingException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.osgi.framework.hooks.weaving.WeavingException
- All Implemented Interfaces:
 Serializable
A weaving exception used to indicate that the class load should be failed but
 the weaving hook must not be blacklisted by the framework.
 
 
This exception conforms to the general purpose exception chaining mechanism.
- Author:
 - $Id: 7575fc1b015fea7c77397391df6c8d2085513e76 $
 - See Also:
 
- 
Constructor Summary
ConstructorsConstructorDescriptionWeavingException(String msg) Creates aWeavingExceptionwith the specified message.WeavingException(String msg, Throwable cause) Creates aWeavingExceptionwith the specified message and exception cause. - 
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString 
- 
Constructor Details
- 
WeavingException
Creates aWeavingExceptionwith the specified message and exception cause.- Parameters:
 msg- The associated message.cause- The cause of this exception.
 - 
WeavingException
Creates aWeavingExceptionwith the specified message.- Parameters:
 msg- The message.
 
 -