CIS Basic classes are being implemented
[living-lab-site.git] / cis / cis_exceptions.py
1 #!/usr/bin/env python
2
3 """
4 This module implements exceptions raised in Content Ingestion Server.
5 """
6
7 class NotImplementedException(Exception):
8     def __init__(self, value):
9         self.value = value
10
11     def __str__(self):
12         return repr(self.value)