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

com.poiji.exception.PoijiException Maven / Gradle / Ivy

package com.poiji.exception;

/**
 * PoijiException is the superclass of RuntimeException that
 * can be thrown during the mapping process of excel service.
 * Created by hakan on 18/01/2017.
 * @since   Poiji 1.0
 */
@SuppressWarnings("serial")
public class PoijiException extends RuntimeException {

    public PoijiException(String message) {
        super(message);
    }

    public PoijiException(String message, Throwable cause) {
        super(message, cause);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy