Pr_robot_factory/robot/exceptions/RobotMagicValueException.java

8 lines
175 B
Java
Raw Normal View History

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