Package org.codehaus.groovy.control
Class CompilationFailedException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- groovy.lang.GroovyRuntimeException
-
- org.codehaus.groovy.control.CompilationFailedException
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
MultipleCompilationErrorsException
public class CompilationFailedException extends GroovyRuntimeException
Thrown when compilation fails from source errors.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected int
phase
protected ProcessingUnit
unit
-
Constructor Summary
Constructors Constructor Description CompilationFailedException(int phase, ProcessingUnit unit)
CompilationFailedException(int phase, ProcessingUnit unit, Throwable cause)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ProcessingUnit
getUnit()
Returns the ProcessingUnit in which the error occurred.-
Methods inherited from class groovy.lang.GroovyRuntimeException
getLocationText, getMessage, getMessageWithoutLocationText, getModule, getNode, setModule
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Field Detail
-
phase
protected int phase
-
unit
protected ProcessingUnit unit
-
-
Constructor Detail
-
CompilationFailedException
public CompilationFailedException(int phase, ProcessingUnit unit, Throwable cause)
-
CompilationFailedException
public CompilationFailedException(int phase, ProcessingUnit unit)
-
-
Method Detail
-
getUnit
public ProcessingUnit getUnit()
Returns the ProcessingUnit in which the error occurred.
-
-