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