Add OvenException for oven related internal exceptions

This commit is contained in:
ichbinjoe
2015-10-02 12:30:06 -04:00
parent 78caaec86c
commit cadb9c6abc
2 changed files with 20 additions and 4 deletions

View 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);
}
}