mirror of
https://github.com/jrconlin/oauthsimple.git
synced 2026-09-14 18:44:04 +00:00
9 lines
180 B
Python
9 lines
180 B
Python
#! /usr/bin/env python
|
|
class OAuthSimpleException(Exception):
|
|
def __init__(self,value):
|
|
self.msg = value
|
|
|
|
def __str__(self):
|
|
return repr(self.msg)
|
|
|