Reorganizing to a parent project, a light and a heavy (validating) library, a commandline application and the server

This commit is contained in:
Jochen Stärk
2020-03-28 18:28:32 +01:00
parent 7b0a3f2ae0
commit dea42f950e
218 changed files with 1003962 additions and 269 deletions

View File

@@ -0,0 +1,13 @@
package ZUV;
public class IrrecoverableValidationError extends Exception {
/**
*
*/
private static final long serialVersionUID = 1L;
public IrrecoverableValidationError(String message) {
super(message);
}
}