Pr_robot_factory/robot/exceptions/ArrayEmptyException.java

8 lines
201 B
Java
Raw Normal View History

package robot.exceptions;
public class ArrayEmptyException extends RobotException{
public ArrayEmptyException(robotExceptions type,String errorMessage){
super(type, errorMessage);
}
}