处理从服务器到 GWT 客户端的自定义服务器端异常

Handling custom server-side exceptions from server to GWT Client

GWT 应用程序可以以何种方式(和 Restlet 版本)处理自定义服务器端异常并使用 ClientProxy 接口从 GWT 客户端处理它,以便应用程序可以检查是否:

if(exception instanceof CustomServerException){
 // Do UI stuff
} 

Restlet 2.3 引入了带注释的异常,允许隐藏 class ResourceException 的使用,并在客户端使用客户端代理透明地利用用户定义的异常。

更多细节,你可以看看这个link:https://templth.wordpress.com/2015/02/27/exception-handling-with-restlet/

希望对你有帮助, 蒂埃里