exceptions.py 253 B

12345678910
  1. # -*- coding: utf-8 -*-
  2. class UsageError(Exception):
  3. """ error in pytest usage or invocation"""
  4. class PrintHelp(Exception):
  5. """Raised when pytest should print it's help to skip the rest of the
  6. argument parsing and validation."""
  7. pass