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.
- See Also:
- Serialized Form
Constructor Summary |
WeavingException(java.lang.String msg)
Creates a WeavingException with the specified message. |
WeavingException(java.lang.String msg,
java.lang.Throwable cause)
Creates a WeavingException with the specified message and
exception cause. |
Methods inherited from class java.lang.Throwable |
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
WeavingException
public WeavingException(java.lang.String msg,
java.lang.Throwable cause)
- Creates a
WeavingException
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 a
WeavingException
with the specified message.
- Parameters:
msg
- The message.