1 package com.github.mygreen.supercsv.localization; 2 3 4 /** 5 * メッセージのフォーマットに失敗した際にスローされる例外 6 * @author T.TSUCHIE 7 * 8 */ 9 public class MessageParseException extends RuntimeException { 10 11 /** serialVersionUID */ 12 private static final long serialVersionUID = 1L; 13 14 private final String value; 15 16 public MessageParseException(final String value, final String message) { 17 super(message); 18 this.value = value; 19 } 20 21 /** 22 * value を取得する 23 * @return the value 24 */ 25 public String getValue() { 26 return value; 27 } 28 29 }