]>
Tony Duckles's Git Repositories (git.nynim.org) - svn2svn.git/blob - svn2svn/errors.py
2 Exception sub-hierarchy:
5 +-- ExternalCommandFailed
7 +-- UnsupportedSVNFeature
8 | +-- UnsupportedSVNAction
15 class ExternalCommandFailed(RuntimeError):
17 An external command failed.
20 class SVNError(RuntimeError):
25 class UnsupportedSVNFeature(SVNError
):
27 An unsuppported SVN (mis)feature.
30 class UnsupportedSVNAction(UnsupportedSVNFeature
):
32 An unknown/unsupported SVN action in an SVN log entry.
35 class SVNOutputError(SVNError
):
37 A generic error with the output of an SVN command.
40 class EmptySVNLog(SVNOutputError
):
42 An empty SVN log entry.
45 class InternalError(RuntimeError):
47 An internal error in the svn2svn logic.
50 class VerificationError(InternalError
):
52 An error found during verify-mode.