summaryrefslogtreecommitdiffstats
path: root/Testcases/cfgm_common/ifmap/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'Testcases/cfgm_common/ifmap/__init__.py')
-rw-r--r--Testcases/cfgm_common/ifmap/__init__.py29
1 files changed, 29 insertions, 0 deletions
diff --git a/Testcases/cfgm_common/ifmap/__init__.py b/Testcases/cfgm_common/ifmap/__init__.py
new file mode 100644
index 0000000..189d225
--- /dev/null
+++ b/Testcases/cfgm_common/ifmap/__init__.py
@@ -0,0 +1,29 @@
+#!/usr/bin/python
+#
+# Copyright 2011, Infoblox, All Rights Reserved
+#
+# Open Source, see LICENSE
+#
+
+"""
+ifmap-python client is an implementation of the TCG IF-MAP 2.0 protocol as a client library.
+"""
+
+import sys
+
+#
+# Project properties
+#
+
+__version__ = '0.1'
+__build__=""
+
+#
+# Exceptions
+#
+class Error(Exception):
+ """
+ Base class for exception handling
+ """
+ def __init__(self, msg):
+ Exception.__init__(self, "Error: '%s'" % msg)