mirror of
https://github.com/status-im/PyGithub.git
synced 2026-08-31 19:01:15 +00:00
6 lines
165 B
Python
6 lines
165 B
Python
class GithubException( Exception ):
|
|
def __init__( self, status, data ):
|
|
Exception.__init__( self )
|
|
self.status = status
|
|
self.data = data
|