mirror of
https://github.com/wisemapping/wisemapping-open-source.git
synced 2025-04-19 02:05:32 +08:00
9 lines
264 B
Java
9 lines
264 B
Java
|
package com.wisemapping.rest;
|
||
|
|
||
|
class JsonHttpMessageNotReadableException extends org.springframework.http.converter.HttpMessageNotReadableException {
|
||
|
|
||
|
public JsonHttpMessageNotReadableException(String msg, Exception cause) {
|
||
|
super(msg, cause);
|
||
|
}
|
||
|
}
|