6 lines
145 B
Python
6 lines
145 B
Python
|
|
"""Custom exceptions for the orchestrator plugin."""
|
||
|
|
|
||
|
|
class PluginDBError(Exception):
|
||
|
|
"""Raised when a database operation fails."""
|
||
|
|
pass
|