RoboterFabrik/Roboter/tpe/exceptions/RobotMagicValueException.java

11 lines
278 B
Java
Raw Normal View History

2023-01-07 16:32:29 +01:00
package tpe.exceptions;
@SuppressWarnings("serial")
public class RobotMagicValueException extends RobotException {
String robotName;
public RobotMagicValueException(String errorMessage, String robotName) {
super(errorMessage, robotName);
this.robotName = robotName;
}
}