Add OvenException for oven related internal exceptions
This commit is contained in:
12
src/main/java/org/drtshock/OvenException.java
Normal file
12
src/main/java/org/drtshock/OvenException.java
Normal file
@@ -0,0 +1,12 @@
|
||||
package org.drtshock;
|
||||
|
||||
/**
|
||||
* Created by Joe Hirschfeld on 10/2/2015.
|
||||
*/
|
||||
public class OvenException extends Exception {
|
||||
|
||||
public OvenException(Exception internalException){
|
||||
super(internalException);
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user