mirror of
https://github.com/thegeeklab/ansible-later.git
synced 2024-11-18 10:50:40 +00:00
10 lines
229 B
Python
10 lines
229 B
Python
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
|