Files
oauthsimple/python/OAuthSimple/OAuthSimpleException.py
T
2011-11-28 15:04:43 -08:00

10 lines
174 B
Python

#! /usr/bin/env python
class OAuthSimpleException(Exception):
def __init__(self, value):
self.msg = value
def __str__(self):
return repr(self.msg)