All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.cdap.wrangler.api.parser.SyntaxError Maven / Gradle / Ivy

There is a newer version: 4.10.1
Show newest version
/*
 * Copyright © 2017-2019 Cask Data, Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
 * use this file except in compliance with the License. You may obtain a copy of
 * the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
 * License for the specific language governing permissions and limitations under
 * the License.
 */

package io.cdap.wrangler.api.parser;

import io.cdap.wrangler.api.annotations.PublicEvolving;

/**
 * The class SyntaxError contains information about the errors observed
 * during parsing of the recipe.
 *
 * 

It contains the line number, character position, the error message and the * source line that has errors.

*/ @PublicEvolving public final class SyntaxError { private final int lineNo; private final int charPos; private final String message; private final String line; public SyntaxError(int lineNo, int charPos, String message, String line) { this.lineNo = lineNo; this.charPos = charPos; this.message = message; this.line = line; } /** * @return Returns the line number where the syntax error occured. */ public int getLineNumber() { return lineNo; } /** * @return Returns the character position within the line where the error is suspected. */ public int getCharPosition() { return charPos; } /** * @return The error message generated by the parser for the line. */ public String getMessage() { return message; } /** * @return Original line that has the syntax error. */ public String getLine() { return line; } /** * @return Represents the string representation of this object SyntaxError */ @Override public String toString() { return message; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy