com.github.mygreen.cellformatter.NoMatchConditionFormatterException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of excel-cellformatter Show documentation
Show all versions of excel-cellformatter Show documentation
Excelのセルの書式を解析してフォーマットするライブラリ。
package com.github.mygreen.cellformatter;
/**
* 適切な条件に一致するフォーマットが見つからない場合にスローする例外
* @author T.TSUCHIE
*
*/
public class NoMatchConditionFormatterException extends RuntimeException {
/** serialVersionUID */
private static final long serialVersionUID = 1L;
private final CommonCell cell;
public NoMatchConditionFormatterException(final CommonCell cell, final String message) {
super(message);
this.cell = cell;
}
/**
* フォーマットに失敗したセルを取得する。
* @return
*/
public CommonCell getCell() {
return cell;
}
}