All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.opalj.br.CodeAnalysisFailedException.scala Maven / Gradle / Ivy

The newest version!
/* BSD 2-Clause License - see OPAL/LICENSE for details. */
package org.opalj
package br

/**
 * Exception that is thrown when an analysis of a method's implementation has failed.
 *
 * @param message The message that describes the reason.
 * @param code The code block for which the analysis failed.
 * @param pc The program counter of the last instruction that was tried to analyze.
 *
 * @author Michael Eichberg
 */
case class CodeAnalysisFailedException(
        message: String,
        code:    Code,
        pc:      PC
) extends RuntimeException(message)





© 2015 - 2025 Weber Informatics LLC | Privacy Policy