Class DataflowAnalysisException

    • Constructor Summary

      Constructors 
      Constructor Description
      DataflowAnalysisException()
      Constructor.
      DataflowAnalysisException​(java.lang.String msg)
      Constructor.
      DataflowAnalysisException​(java.lang.String msg, java.lang.Throwable cause)
      Constructor from message and another Throwable object.
      DataflowAnalysisException​(java.lang.String message, org.apache.bcel.generic.MethodGen methodGen, org.apache.bcel.generic.InstructionHandle handle)
      Constructor from method and instruction.
      DataflowAnalysisException​(java.lang.String message, org.apache.bcel.generic.MethodGen methodGen, org.apache.bcel.generic.InstructionHandle handle, java.lang.Throwable cause)
      Constructor from message, method and instruction, and Throwable object (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

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

      • DataflowAnalysisException

        public DataflowAnalysisException()
        Constructor.
      • DataflowAnalysisException

        public DataflowAnalysisException​(java.lang.String msg)
        Constructor.
        Parameters:
        msg - message describing the reason for the exception
      • DataflowAnalysisException

        public DataflowAnalysisException​(java.lang.String msg,
                                         java.lang.Throwable cause)
        Constructor from message and another Throwable object.
        Parameters:
        msg - message describing the reason for the exception
        cause - a Throwable which is the cause of the exception
      • DataflowAnalysisException

        public DataflowAnalysisException​(java.lang.String message,
                                         org.apache.bcel.generic.MethodGen methodGen,
                                         org.apache.bcel.generic.InstructionHandle handle)
        Constructor from method and instruction.
        Parameters:
        message - reason for the error
        methodGen - the method
        handle - the instruction
      • DataflowAnalysisException

        public DataflowAnalysisException​(java.lang.String message,
                                         org.apache.bcel.generic.MethodGen methodGen,
                                         org.apache.bcel.generic.InstructionHandle handle,
                                         java.lang.Throwable cause)
        Constructor from message, method and instruction, and Throwable object (cause).
        Parameters:
        message - reason for the error
        methodGen - the method
        handle - the instruction
        cause - a Throwable which is the cause of the exception