generated from hummel/Bank-System
11 lines
278 B
Java
11 lines
278 B
Java
|
package tpe.exceptions;
|
||
|
|
||
|
@SuppressWarnings("serial")
|
||
|
public class RobotMagicValueException extends RobotException {
|
||
|
String robotName;
|
||
|
public RobotMagicValueException(String errorMessage, String robotName) {
|
||
|
super(errorMessage, robotName);
|
||
|
this.robotName = robotName;
|
||
|
}
|
||
|
}
|