Files
grm/src/gitea_runner_manager/exceptions.py
T
emil 01b3f594f7
Post-merge / detect-type (push) Successful in 48s
Post-merge / release (push) Successful in 1m0s
Post-merge / validate-commit-msg (push) Successful in 1m3s
Post-merge / vikunja (push) Successful in 1m3s
Post-merge / badges (push) Successful in 1m11s
Post-merge / sync-wiki (push) Successful in 1m35s
Post-merge / configure-repo (push) Successful in 58s
Post-merge / publish (push) Successful in 57s
GRM-112: fix: Makefile HOST/NAME requirement errors, add restart and list targets
2026-06-28 11:39:37 +00:00

14 lines
241 B
Python

"""Custom exceptions for Gitea Runner Manager."""
class GRMError(Exception):
"""Base exception for all Gitea Runner Manager errors."""
pass
class AnsibleError(GRMError):
"""Raised when an Ansible command fails."""
pass