Pr_robot_factory/robot/exceptions/RobotIllegalStateException....

9 lines
213 B
Java

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