blob: 7c9178f4585efd37c571171da80bcaaa637798e3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
"""Defines tox error types"""
from __future__ import annotations
class Recreate(Exception): # noqa: N818
"""Recreate the tox environment"""
class Skip(Exception): # noqa: N818
"""Skip this tox environment"""
class Fail(Exception): # noqa: N818
"""Failed creating env"""
|