Class 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 deny listed by the framework.

    This exception conforms to the general purpose exception chaining mechanism.

    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      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.
    • Method Summary

      • Methods inherited from class java.lang.Throwable

        addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • 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.