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