You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Please consider using try...catch exp with code in that relates to java.sql.Xxx,
like java.sql.Date,java.sql.Time.
Otherwise, it will show NoClassDefFoundError sometimes.
Eg: use Gson by a kotlin script
//line 265 in Gson.java
//The following code should surround with try catch.
factories.add(TimeTypeAdapter.FACTORY);
factories.add(SqlDateTypeAdapter.FACTORY);
The text was updated successfully, but these errors were encountered:
Please consider using
try...catch
exp with code in that relates tojava.sql.Xxx
,like
java.sql.Date
,java.sql.Time
.Otherwise, it will show
NoClassDefFoundError
sometimes.Eg: use Gson by a kotlin script
The text was updated successfully, but these errors were encountered: