
io.debezium.text.ParsingException Maven / Gradle / Ivy
/*
* Copyright Debezium Authors.
*
* Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0
*/
package io.debezium.text;
/**
* An exception representing a problem during parsing of text.
*
* @author Randall Hauch
*/
public class ParsingException extends RuntimeException {
private static final long serialVersionUID = 1L;
private final Position position;
/**
* @param position the position of the error; never null
*/
public ParsingException(Position position) {
super();
this.position = position;
}
/**
* @param position the position of the error; never null
* @param message the message
* @param cause the underlying cause
*/
public ParsingException(Position position,
String message,
Throwable cause) {
super(message, cause);
this.position = position;
}
/**
* @param position the position of the error; never null
* @param message the message
*/
public ParsingException(Position position,
String message) {
super(message);
this.position = position;
}
public Position getPosition() {
return position;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy