aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/python/pytest/py2/_pytest/config/exceptions.py
blob: bf58fde5dbf837d8e21eb3b424eca3aadd06cc28 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
# -*- coding: utf-8 -*-
class UsageError(Exception):
    """ error in pytest usage or invocation"""


class PrintHelp(Exception):
    """Raised when pytest should print it's help to skip the rest of the
    argument parsing and validation."""

    pass