def get_person_raw(person_id): try: person = Person.get(person_id) except StatementError: raise PersonNotFoundException() if person is None: raise PersonNotFoundException() return person