![JAR search and dependency download from the Maven repository](/logo.png)
org.supercsv.ext.exception.SuperCsvInvalidAnnotationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of super-csv-annotation Show documentation
Show all versions of super-csv-annotation Show documentation
CSVのJavaライブラリであるSuperCSVに、アノテーション機能を追加したライブラリです。
package org.supercsv.ext.exception;
/**
*
*
* @author T.TSUCHIE
*
*/
public class SuperCsvInvalidAnnotationException extends RuntimeException {
/** serialVersionUID */
private static final long serialVersionUID = 1L;
public SuperCsvInvalidAnnotationException(final String message) {
super(message);
}
public SuperCsvInvalidAnnotationException(final String message, Throwable e) {
super(message, e);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy