2022-12-09 10:45:51 +01:00
|
|
|
package robot.exceptions;
|
2022-12-09 01:38:11 +01:00
|
|
|
|
2022-12-14 09:52:50 +01:00
|
|
|
public class RobotMagicValueException extends RobotException{
|
2022-12-09 01:38:11 +01:00
|
|
|
public RobotMagicValueException(String errormessage){
|
|
|
|
super(errormessage);
|
|
|
|
}
|
|
|
|
}
|