RoboterFabrik/Roboter/tpe/exceptions/RobotIllegalStateException....

11 lines
254 B
Java
Raw Normal View History

2023-01-07 14:15:53 +01:00
package tpe.exceptions;
2023-01-07 16:32:29 +01:00
public class RobotIllegalStateException extends RobotException{
String robotName;
public RobotIllegalStateException(String errorMessage, String robotName) {
super(errorMessage, robotName);
this.robotName = robotName;
2023-01-07 14:15:53 +01:00
}
}