|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectsleep.error.SyntaxError
public class SyntaxError
A class containing syntax error information. A SyntaxError object is passed by a YourCodeSucksException.
YourCodeSucksException
Field Summary | |
---|---|
protected String |
code
|
protected String |
description
|
protected int |
lineNo
|
protected String |
marker
|
Constructor Summary | |
---|---|
SyntaxError(String _description,
String _code,
int _lineNo)
construct a syntax error object, but enough about me... |
|
SyntaxError(String _description,
String _code,
int _lineNo,
String _marker)
construct a syntax error object, but enough about me... |
Method Summary | |
---|---|
String |
getCodeSnippet()
return an isolated snippet of code from where the error occured |
String |
getDescription()
return a best guess description of what the error in the code might actually be |
int |
getLineNumber()
return the line number in the file where the error occured. |
String |
getMarker()
return a marker string |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
protected String description
protected String code
protected String marker
protected int lineNo
Constructor Detail |
---|
public SyntaxError(String _description, String _code, int _lineNo)
public SyntaxError(String _description, String _code, int _lineNo, String _marker)
Method Detail |
---|
public String getMarker()
public String getDescription()
public String getCodeSnippet()
public int getLineNumber()
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |