Pr_robot_factory/robot/exceptions/RobotIllegalStateException....

8 lines
184 B
Java

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