在服务器端我有:
public void throwException() throws Exception {
throw new NullPointerException("fslkdjflks");
}
在客户端我有:
_requestFactory.myService().throwException().fire(new Receiver<Void>() {
@Override
public void onSuccess(Void response) {
// TODO Auto-generated method stub
}
@Override
public void onFailure(ServerFailure error) {
// TODO Auto-generated method stub
Window.alert(error.getExceptionType() + " " + error.getMessage());
}
});
error.getExceptionType() 返回 null 而不是异常的类型。知道为什么吗?
谢谢,吉拉德。