| |
|
| org.itsnat.core.ClientErrorMode
ClientErrorMode | public interface ClientErrorMode (Code) | | Contains the constants used to declare the whether the browser catches JavaScript errors
and if they are shown to the user using a JavaScript alert call.
|
NOT_CATCH_ERRORS | int NOT_CATCH_ERRORS(Code) | | The browser does not catch errors. Use this mode to break the script execution
useful when debugging because a JavaScript debugger can stop automatically.
|
NOT_SHOW_ERRORS | int NOT_SHOW_ERRORS(Code) | | The browser catch errors but no info is shown to the user. Use this mode to
silently hide errors.
|
SHOW_CLIENT_ERRORS | int SHOW_CLIENT_ERRORS(Code) | | The browser catch errors. Only client (JavaScript) errors are shown
to the user using an alert .
|
SHOW_SERVER_AND_CLIENT_ERRORS | int SHOW_SERVER_AND_CLIENT_ERRORS(Code) | | The browser catch errors. Client (JavaScript) and server (server exceptions) errors are shown
to the user using an alert .
|
SHOW_SERVER_ERRORS | int SHOW_SERVER_ERRORS(Code) | | The browser catch errors. Only server errors (server exceptions) are shown
to the user using an alert .
|
|
|
|