以什么方式(和Restlet版本)GWT应用程序可以处理自定义服务器端异常并使用ClientProxy
接口从GWT客户端处理它,以便应用程序可以检查:
if(exception instanceof CustomServerException){
// Do UI stuff
}
答案 0 :(得分:0)
Restlet 2.3引入了带注释的异常,允许隐藏类ResourceException的使用,并在客户端使用客户端代理利用透明的用户定义异常。
有关详细信息,您可以查看以下链接:https://templth.wordpress.com/2015/02/27/exception-handling-with-restlet/
希望它可以帮到你, 亨利