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:
java.io.Serializable
public class WeavingException extends java.lang.RuntimeException
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:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description WeavingException(java.lang.String msg)
Creates aWeavingException
with the specified message.WeavingException(java.lang.String msg, java.lang.Throwable cause)
Creates aWeavingException
with the specified message and exception cause.
-
-
-
Constructor Detail
-
WeavingException
public WeavingException(java.lang.String msg, java.lang.Throwable cause)
Creates aWeavingException
with the specified message and exception cause.- Parameters:
msg
- The associated message.cause
- The cause of this exception.
-
WeavingException
public WeavingException(java.lang.String msg)
Creates aWeavingException
with the specified message.- Parameters:
msg
- The message.
-
-