Pr_robot_factory/robot/exceptions/RobotMagicValueException.java

8 lines
210 B
Java

package robot.exceptions;
public class RobotMagicValueException extends RobotException {
public RobotMagicValueException(robotExceptions type, String errormessage) {
super(type, errormessage);
}
}