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.

18 lines
335 B

  1. '''
  2. Created on Feb 10, 2014
  3. @author: Chris
  4. '''
  5. class ParserError(Exception):
  6. """Thrown when the parser can't find argparse functions the client code"""
  7. pass
  8. class ArgumentError(Exception):
  9. """Thrown when the parser is supplied with an incorrect argument format"""
  10. pass
  11. if __name__ == '__main__':
  12. pass