Files
Potato/src/main/java/org/drtshock/OvenException.java
2015-10-28 00:37:24 +00:00

13 lines
247 B
Java

package org.drtshock;
/**
* An exception to describe that something went wrong with our oven!
*/
public class OvenException extends Exception {
public OvenException(Exception internalException) {
super(internalException);
}
}