Errors
In this section you will find Errors that the FrontEnd Framework may arise.
Structure
The errors message structure has two parts, the first one is the code and the second one the class and method where the exception has been thrown, the next example shows how it should looks:
It's important to take into account that a complete log with a stack and full message will be shown in the developer tools log.
Codes
The error codes of the framework are a combination of two different codes, the first one refers to the module where the error has been thrown, this taking into account three base modules (ClientCore, AngularClient, BaseComponents) and WFNetKendoComponents, on other hand, the second one refers to the type of error.
Module Codes
As the past paragraph mentioned, this is the first part of the whole error code, there are four, as the number is greater it means the error has been thrown in a more external module, so for instance we have the next hierarchy:
Code
Module
01
ClientCore
02
AngularClient
03
BaseComponents
04
WFNetKendoComponents
Error type Codes
Inside the framework are two usual types of errors, this being the next ones:
TypeError
ReferenceError
For instance there are three codes, this taking into account the not usual errors, the next table shows them:
Code
Error type
10
TypeError
20
ReferenceError
30
Other errors
Errors fixing
The errors mentioned before are the more usual, so as usual issues they have usual fixes, and in this section we will see some of them.
TypeError
ReferenceError
This type of errors refers to problems with models IDs, this means that sometimes an ID is wrong so it cannot find their correct reference or an ID of a deleted model doesn't exist so it is trying to delete a non existent model, in this cases a ReferenceError is thrown because of the null reference.
Last updated
Was this helpful?