Home | History | Annotate | Download | only in exceptions

Lines Matching refs:line

26   private final int line;
31 * Signifies line or column is not known.
39 * @param lineContent content of a line where error occurred (can be null)
41 * @param line number of a line in {@code resourceName} where error occurred (ignored if set to
49 int line, int column, Throwable cause) {
50 super(makeMessage(message, lineContent, resourceName, line, column), cause);
52 this.line = line;
57 int line, int column) {
65 if (line != UNKNOWN_POSITION) {
66 result.append(" line=").append(line);
82 * Line number this syntax error occured, or {@link #UNKNOWN_POSITION}.
85 return line;