You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
335 B

'''
Created on Feb 10, 2014
@author: Chris
'''
class ParserError(Exception):
"""Thrown when the parser can't find argparse functions the client code"""
pass
class ArgumentError(Exception):
"""Thrown when the parser is supplied with an incorrect argument format"""
pass
if __name__ == '__main__':
pass