10 lines
283 B
Python
10 lines
283 B
Python
from enum import StrEnum
|
|
|
|
|
|
class Errors(StrEnum):
|
|
INSUFFICIENT_INSTRUCTIONS = (
|
|
"Not enough supplied instructions! Usage: {instruction} {connector}"
|
|
)
|
|
CONNECTOR_INVALID = "The requested connector is invalid!"
|
|
CONNECTOR_UNSPECIFIED = "No requested connector!"
|