Marvin/exceptions.py
2021-11-04 17:14:14 +01:00

6 lines
270 B
Python

class IssueStatusNotFoundException(Exception):
def __init__(self, status_name: str):
self.status_name = status_name
def __str__(self):
return f"No issue status with the name \"{self.status_name}\" could be found. Please check your config.yaml."