Merge "Bug 6745 Remove thread renaming and unnecessary logging" into stable/boron
[openflowplugin.git] / test-scripts / exceptions / odl_exceptions.py
1 '''
2 Created on Jan 24, 2014
3
4 @author: vdemcak
5 '''
6
7 class OdlValidationException(Exception):
8     def __init__(self, *in_args):
9         # *in_args is used to get a list of the parameters passed in
10         self.args = [a for a in in_args]