Class InjectionException

  • All Implemented Interfaces:
    java.io.Serializable

    public class InjectionException
    extends java.lang.RuntimeException
    Thrown when the injection of a patch fails.
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      InjectionException​(java.lang.String message)
      Constructs a new injection exception with the specified detail message.
      InjectionException​(java.lang.String message, java.lang.Throwable cause)
      Constructs a new injection exception with the specified detail message and cause.
      InjectionException​(java.lang.Throwable cause)
      Constructs a new injection exception with the specified cause and a detail message of (cause==null ? null : cause.toString())
    • 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

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

      • InjectionException

        public InjectionException​(java.lang.String message)
        Constructs a new injection exception with the specified detail message.
        Parameters:
        message - the detail message
      • InjectionException

        public InjectionException​(java.lang.String message,
                                  java.lang.Throwable cause)
        Constructs a new injection exception with the specified detail message and cause.
        Parameters:
        message - the detail message
        cause - the cause, may be null (indicating nonexistent or unknown cause)
      • InjectionException

        public InjectionException​(java.lang.Throwable cause)
        Constructs a new injection exception with the specified cause and a detail message of (cause==null ? null : cause.toString())
        Parameters:
        cause - the cause, may be null (indicating nonexistent or unknown cause)