サーバー側には次のものがあります。
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 を返します。理由はありますか?
ありがとう、ギラッド。