10 lines
170 B
Python
10 lines
170 B
Python
|
|
from services.errors.base import BaseServiceError
|
||
|
|
|
||
|
|
|
||
|
|
class AppModelConfigBrokenError(BaseServiceError):
|
||
|
|
pass
|
||
|
|
|
||
|
|
|
||
|
|
class ProviderNotFoundError(BaseServiceError):
|
||
|
|
pass
|