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

com.github.mygreen.supercsv.expression.ExpressionEvaluationException Maven / Gradle / Ivy

Go to download

CSVのJavaライブラリであるSuperCSVに、アノテーション機能を追加したライブラリです。

There is a newer version: 2.3
Show newest version
package com.github.mygreen.supercsv.expression;

import java.util.Map;

/**
 * 式言語の評価に失敗した場合にスローする例外。
 * 
 * @since 2.0
 * @author T.TSUCHIE
 *
 */
public class ExpressionEvaluationException extends RuntimeException {
    
    /** serialVersionUID */
    private static final long serialVersionUID = 1L;
    
    private final String expression;
    
    private final Map variables;
    
    public ExpressionEvaluationException(final String message, final Throwable cause,
            final String expression, final Map variables) {
        super(message, cause);
        this.expression = expression;
        this.variables = variables;
        
    }
    
    /**
     * 評価に失敗した式を取得する。
     * @return 式を取得する。
     */
    public String getExpression() {
        return expression;
    }
    
    /**
     * 評価に失敗した変数のマップを取得する。
     * @return 変数のマップ
     */
    public Map getVariables() {
        return variables;
    }
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy