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