FlightDeck/utils/exceptions.py

10 строки
237 B
Python
Исходник Обычный вид История

2011-02-03 14:03:01 +03:00
class SimpleException(Exception):
" Exception extended with a value "
def __init__(self, value):
self.value = value
super(SimpleException, self).__init__()
def __str__(self):
return repr(self.value)