/* * RapidMiner * * Copyright (C) 2001-2011 by Rapid-I and the contributors * * Complete list of developers available at our web site: * * http://rapid-i.com * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see http://www.gnu.org/licenses/. */ package com.rapidminer.operator.nio.model; /** An error that occurred during parsing. * * @author Simon Fischer * */ public class ParsingError { public static enum ErrorCode { UNPARSEABLE_DATE("unparseable date"), UNPARSEABLE_INTEGER("unparseable integer"), UNPARSEABLE_REAL("unparseable real number"), MORE_THAN_TWO_VALUES("more than two values for binominal attribute"), ROW_TOO_LONG("row too long"), FILE_SYNTAX_ERROR("file syntax error"); private final String message; private ErrorCode(String message) { this.message = message; } public String getMessage() { return message; } } /** The row number in which this error occurred. */ private final int row; /** The example to which this {@link #row} is mapped. E.g., if rows * are used as annotations, example index and row do not match. */ private int exampleIndex; /** The column (cell index) in which this error occurred. */ private final int column; /** The original value that was unparseable. Most of the time, this will be a string. */ private final Object originalValue; private final ErrorCode errorCode; private final Throwable cause; public ParsingError(int row, int column, ErrorCode errorCode, Object originalValue) { this(row, column, errorCode, originalValue, null); } public ParsingError(int row, int column, ErrorCode errorCode, Object originalValue, Throwable cause) { super(); this.row = row; this.column = column; this.originalValue = originalValue; this.errorCode = errorCode; this.setExampleIndex(row); this.cause = cause; } public int getRow() { return row; } public int getColumn() { return column; } public Object getOriginalValue() { return originalValue; } public ErrorCode getErrorCode() { return errorCode; } public void setExampleIndex(int exampleIndex) { this.exampleIndex = exampleIndex; } public int getExampleIndex() { return exampleIndex; } public Throwable getCause() { return cause; } @Override public String toString() { return "line "+getRow()+", column "+getColumn()+": "+getErrorCode().getMessage() + "("+getOriginalValue()+")"; } }