Package svnmailer :: Module subversion :: Class RepositoryError
[hide private]

Class RepositoryError

source code

              object --+        
                       |        
exceptions.BaseException --+    
                           |    
        exceptions.Exception --+
                               |
                              RepositoryError

A repository error occured

Instance Methods [hide private]
 
__init__(self, sexc)
Initialization
source code
str
__str__(self)
Human readable representation
source code

Inherited from exceptions.Exception: __new__

Inherited from exceptions.BaseException: __delattr__, __getattribute__, __getitem__, __getslice__, __reduce__, __repr__, __setattr__, __setstate__, __unicode__

Inherited from object: __format__, __hash__, __reduce_ex__, __sizeof__, __subclasshook__

Instance Variables [hide private]
int svn_err_code
The SVN error code
str svn_err_name
The name of the SVN error (if it could be mapped)
str svn_err_str
The SVN error description
Properties [hide private]

Inherited from exceptions.BaseException: args, message

Inherited from object: __class__

Method Details [hide private]

__init__(self, sexc)
(Constructor)

source code 

Initialization

Parameters:
  • sexc (svnmailer.subversion.Error) - svnmailer.subversion.Error
Overrides: object.__init__

__str__(self)
(Informal representation operator)

source code 

Human readable representation

Returns: str
The string representation
Overrides: object.__str__