6 lines
265 B
Python
6 lines
265 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!" |