Class SyntaxErrorMessage
- java.lang.Object
 - 
- org.codehaus.groovy.control.messages.Message
 - 
- org.codehaus.groovy.control.messages.SyntaxErrorMessage
 
 
 
- 
public class SyntaxErrorMessage extends Message
A class for error messages produced by the parser system. 
- 
- 
Field Summary
Fields Modifier and Type Field Description protected SyntaxExceptioncauseprotected SourceUnitsource 
- 
Constructor Summary
Constructors Constructor Description SyntaxErrorMessage(SyntaxException cause, SourceUnit source) 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description SyntaxExceptiongetCause()Returns the underlying SyntaxException.voidwrite(java.io.PrintWriter output, Janitor janitor)Writes out a nicely formatted summary of the syntax error. 
 - 
 
- 
- 
Field Detail
- 
cause
protected SyntaxException cause
 
- 
source
protected SourceUnit source
 
 - 
 
- 
Constructor Detail
- 
SyntaxErrorMessage
public SyntaxErrorMessage(SyntaxException cause, SourceUnit source)
 
 - 
 
- 
Method Detail
- 
getCause
public SyntaxException getCause()
Returns the underlying SyntaxException. 
 - 
 
 -