This commit is contained in:
YuTian 2024-07-17 15:59:40 +08:00
parent f8de08bd70
commit 5e3dd8f654

View File

@ -35,7 +35,7 @@ public class SerializeHelper {
} }
return jsonObject; return jsonObject;
} catch (Exception e) { } catch (Exception e) {
e.getMessage(); e.printStackTrace();
throw new SerializeException(obj.getClass(), e); throw new SerializeException(obj.getClass(), e);
} }
} }
@ -65,7 +65,7 @@ public class SerializeHelper {
} }
return instance; return instance;
} catch (Exception e) { } catch (Exception e) {
e.getMessage(); e.printStackTrace();
throw new SerializeException(clazz, e); throw new SerializeException(clazz, e);
} }
} }