exceptions.py 229 B

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