Pr_robot_factory/robot/exceptions/RobotMagicValueException.java

8 lines
180 B
Java

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