org.jamel.dbf.exception.DbfException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dbf-reader Show documentation
Show all versions of dbf-reader Show documentation
Java library for fast reading DBF-files
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