提交 b765cef0 authored 作者: Thomas Mueller's avatar Thomas Mueller

Catch errors caused by using Java 6 jar files in Java 5.

上级 92b84eda
......@@ -85,6 +85,8 @@ public class ClassUtils {
} catch (Exception e2) {
throw Message.getSQLException(ErrorCode.CLASS_NOT_FOUND_1, e, className);
}
} catch (UnsupportedClassVersionError e) {
throw Message.getSQLException(ErrorCode.GENERAL_ERROR_1, e, className);
} catch (NoClassDefFoundError e) {
throw Message.getSQLException(ErrorCode.CLASS_NOT_FOUND_1, e, className);
}
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论