mirror of
https://github.com/wassname/catalyst.git
synced 2026-06-29 05:15:44 +08:00
6 lines
190 B
Python
6 lines
190 B
Python
from utils.exception_utils import CustomException
|
|
|
|
class ComponentNoInit(CustomException):
|
|
argmap = ('classname',)
|
|
message = """Class {classname} does not define an init method."""
|