Package org.jline.reader
Class SyntaxError
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.jline.reader.SyntaxError
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
EOFError
public class SyntaxError extends java.lang.RuntimeException
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private int
column
private int
line
private static long
serialVersionUID
-
Constructor Summary
Constructors Constructor Description SyntaxError(int line, int column, java.lang.String message)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
column()
int
line()
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
line
private final int line
-
column
private final int column
-
-