de.berstanio.ghgparser.WeekNotAvailableException 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;
public class WeekNotAvailableException extends DSBNotLoadableException{
public WeekNotAvailableException (Throwable cause) {
super(cause);
}
public WeekNotAvailableException (String cause) {
super(cause);
}
}