2023-01-06 22:55:33 +01:00
|
|
|
package utility.robot_exceptions;
|
2022-12-09 01:38:11 +01:00
|
|
|
|
2022-12-21 16:44:49 +01:00
|
|
|
public class RobotMagicValueException extends RobotException {
|
|
|
|
public RobotMagicValueException(robotExceptions type, String errormessage) {
|
|
|
|
super(type, errormessage);
|
2022-12-09 01:38:11 +01:00
|
|
|
}
|
2022-12-21 16:44:49 +01:00
|
|
|
|
|
|
|
}
|