import br.com.visualmidia.exception.SchoolLevelDoesNotExistsInPersistenceException;
public class GetSchoolLevel extends GDQuery {
protected Object executeQuery(PrevalentSystem system) {
if(system.schoolLevel.isEmpty()) {
throw new SchoolLevelDoesNotExistsInPersistenceException();
}
return system.schoolLevel;
}