RoboterFabrik/Roboter/tpe/exceptions/RobotIllegalStateException....

14 lines
197 B
Java
Raw Normal View History

2023-01-07 14:15:53 +01:00
package tpe.exceptions;
public class RobotIllegalStateException {
public boolean illegalState(boolean powerSwitch) {
if(powerSwitch=false)
{
return false;
}
else
return true;
}
}