JNUSTool/src/de/mas/jnustool/util/ExitException.java
Maschell 0e03adf10f Added a lot of things!
Added a settings class! (no runtime configuration atm)
added decryption from files
added download to files
2016-02-02 22:55:33 +01:00

15 lines
207 B
Java

package de.mas.jnustool.util;
public class ExitException extends Exception {
public ExitException(String string) {
super(string);
}
/**
*
*/
private static final long serialVersionUID = 1L;
}