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

org.jamel.dbf.exception.DbfException Maven / Gradle / Ivy

There is a newer version: 0.3.0
Show newest version
package org.jamel.dbf.exception;

/**
 * @author Sergey Polovko
 */
public class DbfException extends RuntimeException {

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy