Home | History | Annotate | Download | only in exceptions

Lines Matching defs:column

28   private final int column;
31 * Signifies line or column is not known.
43 * @param column number of a column in {@code resourceName} where error occurred (ignored if set
49 int line, int column, Throwable cause) {
50 super(makeMessage(message, lineContent, resourceName, line, column), cause);
53 this.column = column;
57 int line, int column) {
68 if (column != UNKNOWN_POSITION) {
69 result.append(" column=").append(column);
89 * Column number this syntax error occured, or {@link #UNKNOWN_POSITION}.
92 return column;