7 lines
196 B
Python
7 lines
196 B
Python
class ModelError(Exception):
|
|
"Models can raise this error, which will be displayed to the user"
|
|
|
|
|
|
class NeedsKeyException(ModelError):
|
|
"Model needs an API key which has not been provided"
|