From 82f1a7eb5535b30a95b1e71ff18c315d40d1e6f0 Mon Sep 17 00:00:00 2001 From: Stuart Mackie Date: Fri, 29 Jan 2016 16:00:57 -0800 Subject: OpenContrail test suite Change-Id: I61168093a2a05d47377ef47c8638ae1554b1a999 Signed-off-by: Stuart Mackie --- Testcases/cfgm_common/ifmap/__init__.py | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 Testcases/cfgm_common/ifmap/__init__.py (limited to 'Testcases/cfgm_common/ifmap/__init__.py') 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) -- cgit 1.2.3-korg