testException.py
322 Bytes
#!/usr/bin/python
# -*- coding: utf-8 -*-
class TestException(Exception):
def __init__(self, value):
self.value = value
def __str__(self):
return self.value
class TestDBException(Exception):
def __init__(self, value):
self.value = value
def __str__(self):
return self.value