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

scalafix.interfaces.ScalafixFileEvaluationError Maven / Gradle / Ivy

There is a newer version: 2.3.0-RC1
Show newest version
package scalafix.interfaces;

public enum ScalafixFileEvaluationError {
    /**
     * Something unexpected happened.
     */
    UnexpectedError,
    /**
     * A source file failed to parse.
     */
    ParseError,
    /**
     * The source file contents on disk have changed since the last compilation with the SemanticDB compiler plugin.
     *
     * To resolve this error re-compile the project and re-run Scalafix.
     */
    StaleSemanticdbError,
    /**
     * A semantic rewrite was run on a source file that has no associated META-INF/semanticdb/.../*.semanticdb.
     *
     * Typical causes of this error include
     *
     * 
    *
  • Incorrect --classpath, make sure the classpath is compiled with the SemanticDB compiler plugin
  • *
  • Incorrect --sourceroot, if the classpath is compiled with a custom -P:semanticdb:sourceroot:{path} * then make sure the provided --sourceroot is correct. *
  • *
*/ MissingSemanticdbError, }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy