Pr_robot_factory/safety/robot_exceptions/RobotMagicValueException.java

8 lines
217 B
Java

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