Merge branch 'master' of github.com:jstaerk/mustangproject

This commit is contained in:
Jochen Staerk
2017-05-18 08:42:10 +02:00
2 changed files with 40 additions and 12 deletions

View File

@@ -0,0 +1,18 @@
package org.mustangproject.ZUGFeRD;
public class ZUGFeRDExportException extends RuntimeException {
public ZUGFeRDExportException() {
}
public ZUGFeRDExportException(String message) {
super(message);
}
public ZUGFeRDExportException(String message, Throwable cause) {
super(message, cause);
}
public ZUGFeRDExportException(Throwable cause) {
super(cause);
}
}