errors.py 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. # errors.py -- errors for dulwich
  2. # Copyright (C) 2007 James Westby <jw+debian@jameswestby.net>
  3. #
  4. # This program is free software; you can redistribute it and/or
  5. # modify it under the terms of the GNU General Public License
  6. # as published by the Free Software Foundation; version 2
  7. # of the License.
  8. #
  9. # This program is distributed in the hope that it will be useful,
  10. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. # GNU General Public License for more details.
  13. #
  14. # You should have received a copy of the GNU General Public License
  15. # along with this program; if not, write to the Free Software
  16. # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
  17. # MA 02110-1301, USA.
  18. class WrongObjectException(Exception):
  19. """Baseclass for all the _ is not a _ exceptions on objects.
  20. Do not instantiate directly.
  21. Subclasses should define a _type attribute that indicates what
  22. was expected if they were raised.
  23. """
  24. def __init__(self, sha, *args, **kwargs):
  25. string = "%s is not a %s" % (sha, self._type)
  26. Exception.__init__(self, string)
  27. class NotCommitError(WrongObjectException):
  28. """Indicates that the sha requested does not point to a commit."""
  29. _type = 'commit'
  30. class NotTreeError(WrongObjectException):
  31. """Indicates that the sha requested does not point to a tree."""
  32. _type = 'tree'
  33. class NotBlobError(WrongObjectException):
  34. """Indicates that the sha requested does not point to a blob."""
  35. _type = 'blob'
  36. class MissingCommitError(Exception):
  37. """Indicates that a commit was not found in the repository"""
  38. def __init__(self, sha, *args, **kwargs):
  39. Exception.__init__(self, "%s is not in the revision store" % sha)