We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c2bbc20 commit 4d329eeCopy full SHA for 4d329ee
pyslicer/api.py
@@ -128,8 +128,8 @@ def _handler_request(self, req):
128
129
try:
130
result = ujson.loads(req.text)
131
- except ValueError:
132
- raise exceptions.InternalException
+ except ValueError as e:
+ raise exceptions.InternalException("Error while trying to load Json: %s" % e.message)
133
134
sd_response = SDHandlerResponse(
135
result=result,
0 commit comments