exceptions.py 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. #!/usr/bin/env python
  2. """
  3. Licensed to the Apache Software Foundation (ASF) under one
  4. or more contributor license agreements. See the NOTICE file
  5. distributed with this work for additional information
  6. regarding copyright ownership. The ASF licenses this file
  7. to you under the Apache License, Version 2.0 (the
  8. "License"); you may not use this file except in compliance
  9. with the License. You may obtain a copy of the License at
  10. http://www.apache.org/licenses/LICENSE-2.0
  11. Unless required by applicable law or agreed to in writing, software
  12. distributed under the License is distributed on an "AS IS" BASIS,
  13. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. See the License for the specific language governing permissions and
  15. limitations under the License.
  16. """
  17. class FatalException(Exception):
  18. def __init__(self, code, reason):
  19. self.code = code
  20. self.reason = reason
  21. def __str__(self):
  22. return repr("Fatal exception: %s, exit code %s" % (self.reason, self.code))
  23. class NonFatalException(Exception):
  24. def __init__(self, reason):
  25. self.reason = reason
  26. def __str__(self):
  27. return repr("NonFatal exception: %s" % self.reason)
  28. class TimeoutError(Exception):
  29. def __str__(self):
  30. return repr("Timeout error: %s" % self.message)