summaryrefslogtreecommitdiffstats
path: root/Testcases/cfgm_common/ifmap/__init__.py
blob: 189d225411341d8e64199175641f97460179b648 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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)