当内部 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
}