6 lines
132 B
Python
6 lines
132 B
Python
|
from apiflask import HTTPError
|
||
|
|
||
|
|
||
|
class AddInteractionError(HTTPError):
|
||
|
status_code = 500
|
||
|
message = 'add interaction failed.'
|