|
package tpe.exceptions;
|
|
|
|
@SuppressWarnings("serial")
|
|
public class RobotMagicValueException extends RobotException {
|
|
String robotName;
|
|
public RobotMagicValueException(String errorMessage, String robotName) {
|
|
super(errorMessage, robotName);
|
|
this.robotName = robotName;
|
|
}
|
|
}
|