<netui:exceptions> Tag
Renders exception messages and stack traces inline on the JSP page.
<netui:exceptions
[showDevModeStackTrace="showDevModeStackTrace"]
[showMessage="showMessage"]
[showStackTrace="showStackTrace"] />
Renders exception messages and stack traces inline on the JSP page.
Attributes |
showDevModeStackTrace |
Required: No | Supports
runtime evaluation: Yes | Data bindable: |
|
|
showMessage |
Required: No | Supports
runtime evaluation: Yes | Data bindable: No |
|
Boolean. Determines whether or not the exception message is shown. Defaults to true |
showStackTrace |
Required: No | Supports
runtime evaluation: Yes | Data bindable: No |
|
Boolean. Determines whether or not the stack trace is shown. Defaults to false |
In this sample, the <netui:exceptions> tag will output the exception title and message,
but not the stacktraces.
<netui:exceptions showMessage="true" showStackTrace="false" />