mirror of
https://github.com/UnlegitDqrk/Potato.git
synced 2025-10-02 06:30:15 +02:00
13 lines
247 B
Java
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);
|
|
}
|
|
|
|
}
|