Pr_robot_factory/utility/robot_exceptions/RobotMagicValueException.java

8 lines
218 B
Java
Raw Normal View History

2023-01-06 22:55:33 +01:00
package utility.robot_exceptions;
public class RobotMagicValueException extends RobotException {
public RobotMagicValueException(robotExceptions type, String errormessage) {
super(type, errormessage);
}
}