]>
Tony Duckles's Git Repositories (git.nynim.org) - svn2svn.git/blob - svn2svn/errors.py
2 Exception sub-hierarchy:
5 +-- ExternalCommandFailed
7 +-- UnsupportedSVNFeature
8 | +-- UnsupportedSVNAction
13 class ExternalCommandFailed(RuntimeError):
15 An external command failed.
18 class SVNError(RuntimeError):
23 class UnsupportedSVNFeature(SVNError
):
25 An unsuppported SVN (mis)feature.
28 class UnsupportedSVNAction(UnsupportedSVNFeature
):
30 An unknown/unsupported SVN action in an SVN log entry.
33 class SVNOutputError(SVNError
):
35 A generic error with the output of an SVN command.
38 class EmptySVNLog(SVNOutputError
):
40 An empty SVN log entry.