An exception class raised when a python object can not be encoded as a JSON string.
| 2060 | super(JSONDecodeHookError,self).__init__(msg, *args,**kwargs) |
| 2061 | |
| 2062 | class JSONEncodeError(JSONError): |
| 2063 | """An exception class raised when a python object can not be encoded as a JSON string.""" |
| 2064 | pass |
| 2065 | |
| 2066 | class JSONEncodeHookError(JSONEncodeError): |
| 2067 | """An exception that occured within an encoder hook. |
no outgoing calls
no test coverage detected
searching dependent graphs…