Initial commit
This commit is contained in:
13
src/nodash/exceptions/NoDashFatalException.java
Normal file
13
src/nodash/exceptions/NoDashFatalException.java
Normal file
@@ -0,0 +1,13 @@
|
||||
package nodash.exceptions;
|
||||
|
||||
public class NoDashFatalException extends RuntimeException {
|
||||
private static final long serialVersionUID = -8254102569327237811L;
|
||||
|
||||
public NoDashFatalException(Exception e) {
|
||||
super(e);
|
||||
}
|
||||
|
||||
public NoDashFatalException(String string) {
|
||||
super(string);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user