
com.gh.mygreen.xlsmapper.util.PropertyAccessException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xlsmapper Show documentation
Show all versions of xlsmapper Show documentation
XlsMapper is Java Library for mapping Excel sheets to POJO.
The newest version!
package com.gh.mygreen.xlsmapper.util;
/**
* {@link PropertyValueNavigator}でプロパティのアクセスに失敗した際にスローされる。
* @since 1.0
* @author T.TSUCHIE
*
*/
public class PropertyAccessException extends RuntimeException {
/** serialVersionUID */
private static final long serialVersionUID = -8522981718391342777L;
public PropertyAccessException(final String message) {
super(message);
}
public PropertyAccessException(final String message, final Throwable e) {
super(message, e);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy