Files
PythonRMV/src/pyrmv/errors/ps_errors.py
profitroll f31fa65d78
Some checks reported warnings
Tests / test (3.11) (push) Has been cancelled
Tests / test (3.8) (push) Has been cancelled
Tests / test (3.9) (push) Has been cancelled
Tests / test (3.10) (push) Has been cancelled
Small refactor and isort+black formatting
2023-11-24 11:21:02 +01:00

15 lines
413 B
Python

class PsIncorrectParamError(Exception):
"""
An invalid parameter combination was requested, i.e. the
defined range of stable segments encompassed all public
transport sections or it was attempted to search
forward/backward from the end/beginning of the
connection.
"""
def __init__(self):
super().__init__(self.__doc__)
def __str__(self):
return self.__doc__