0

当内部 Guidewire 代码抛出异常时,您会得到一个格式正确的错误消息框。但是,当自定义代码引发异常时,您将被定向到错误页面(带有红色堆栈跟踪文本和返回应用程序按钮)。Guidewire 框架中是否有任何东西可以使正确的 UI 错误处理更好?

如:<TextBox value="user.someMethod()"/>

//someMethod code...
try{
    return user.someOtherCode()
}catch(e : Exception){
    //TODO: gracefully display erorr mesage on page
    //e.g.   showErrorMessage()
    return null
}
4

2 回答 2

1

你有一个更简单的方法来做到这一点,

下面的代码可以写在帮助类或任何增强甚至 PCF 代码选项卡中,这将返回一个很好的格式化错误消息。

gw.api.util.LocationUtil.addRequestScopedErrorMessage("你的错误信息")

于 2021-08-08T18:44:55.133 回答
0

在通过 Guidewire OOTB 代码进行一些搜索之后,您需要的是 UserDisplayableExceptions - 回答我自己,以防其他人有这个想法。

function goToPolicy(bulkDocumentDownload : BulkDocDownload_Avi) {
  try {
    throw new IndexOutOfBoundsException("Ops! some index out of bounds exception was thrown")
  } catch (e : Exception) {
    throw new com.guidewire.pl.web.controller.UserDisplayableException(e.Message)
  }
}
于 2021-03-23T09:59:44.087 回答