4 lines
No EOL
124 B
Python
4 lines
No EOL
124 B
Python
# exceptions.py
|
|
class BusinessRuleException(Exception):
|
|
def __init__(self, message: str):
|
|
self.message = message |