de.berstanio.ghgparser.DSBNotLoadableException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ghgsek2dsbparser Show documentation
Show all versions of ghgsek2dsbparser Show documentation
Fetching and parsing DSB plan for GHG
package de.berstanio.ghgparser;
/**
* Eigene Exception zur leichteren Fehlerbehandlung
*/
public class DSBNotLoadableException extends Exception{
private static final long serialVersionUID = 672631111598658084L;
public DSBNotLoadableException(Throwable cause) {
super(cause);
}
public DSBNotLoadableException(String cause) {
super(cause);
}
}