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

org.supercsv.ext.exception.SuperCsvInvalidAnnotationException Maven / Gradle / Ivy

Go to download

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

There is a newer version: 2.3
Show newest version
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