CIS: ftp transfer API implemented
[living-lab-site.git] / cis / cis_exceptions.py
diff --git a/cis/cis_exceptions.py b/cis/cis_exceptions.py
deleted file mode 100644 (file)
index 33c314f..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/usr/bin/env python
-
-"""
-This module implements exceptions raised in Content Ingestion Server.
-"""
-
-class NotImplementedException(Exception):
-    def __init__(self, value):
-        self.value = value
-
-    def __str__(self):
-        return repr(self.value)
-
-class TranscodingException(Exception):
-    pass
-
-class ThumbExtractionException(Exception):
-    pass