Pr_robot_factory/utility/robot_exceptions/RobotIllegalStateException....

9 lines
220 B
Java
Raw Normal View History

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