Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
def _parse_return_code(rc, msg):
if rc == SUCCESS:
return
elif rc == ERROR:
raise GeoDiffLibError(msg)
elif rc == CONFLICT:
raise GeoDiffLibConflictError(msg)
elif rc == UNSUPPORTED_CHANGE:
raise GeoDiffLibUnsupportedChangeError(msg)
else:
raise GeoDiffLibVersionError("Internal error (enum " + str(rc) + " not handled)")