Overview of error messages
If an error is detected during merging, an error message will be displayed in the Git console. Please refer to Example of how to deal with errors during merging to resolve the error.
Error message structure
Error messages are structured and displayed as follows.
- Error code
- Error summary
- Error details
Example of error message
` [ERROR:e1001] Model "Abort XXX" is conflicted. File: UseCaseModel-A.nmdl Id: XXXX "Description" field: Own is "XX", Other is "YY". "Unit" field: Own is "cm/s", Other is "m/s". ``
Details of error messages
The structure of the error message is shown below.
1. Error code
The following is displayed at the beginning of the error message. For error codes, refer to the Error Code column in the Error Summary table.
[ERROR: Error code]
2. Error summary
Then the following messages are displayed depending on the target.
No. | Category | Target | Content | Error code | Error message |
---|---|---|---|---|---|
1 | File | Schema version | Conflict in file schema version | e0001 | File versions are different. |
2 | Editing conflict | Model | Changes in field values conflict | e1001 | Model "{model name}" is conflicted. |
3 | Deletion of a model conflicts with changes in the field values of that model | e1002 | Model "{model name}" is conflicted by deleting and editing. | ||
4 | Deletion of a parent model conflicts with changes in the field values of a child model | e1002 | Model "{model name}" is conflicted by deleting and editing. Note 1 | ||
5 | Relationship | Changes in field values conflict | e2001 | Relation of "{relation source model name}" is conflicted. Note 2 | |
6 | Deletion of a related or source/destination model conflicts with a change to a related field value. | e2002 | Relation of "{source model name}" is conflicted by deleting and editing. Note 2 | ||
7 | Deletion of a related or source/destination parent model conflicts with a change to a related field value. | e2002 | Relation of "{source model name}" is conflicted by deleting and editing. Note 2, Note 3 | ||
8 | Interaction model | Changes to interaction elements conflict. | e3000 | Interaction Model "{model name}" is conflicted. | |
9 | Product line model | Changes to feature models conflict. | e4001 | Feature Model "{feature name}" is conflicted. | |
10 | Feature assignment conflicts. | e4002 | Feature Condition Formula of "{model name}" is conflicted. | ||
11 | Configuration changes conflict | e4003 | Configration "{Product name}" is conflicted. | ||
12 | Constraints between features conflict | e4004 | Constraint of "{Feature name of constraint's related source}" is conflicted. | ||
13 | Profile | Profile changes conflict | e5000 | Profile is conflicted. | |
14 | Project | Project changes conflict | e6001 | Project is conflicted. | |
15 | Trace setting information conflict | e6002 | Trace Setting "{Trace setting name}" is conflicted. | ||
16 | Settings not included in the calculation of trace coverage conflict | e6003 | Trace Excluded Setting is conflicted. | ||
17 | Error due to model inconsistency | Model, relationship | Ownership relationship becomes a circular reference | e9001 | "{Model name of the reference source}" contains circular reference. |
18 | Multiple parents | e9002 | "{Model name}" has multiple owners. | ||
19 | Project | Inconsistencies detected by project merge | e9003 | The merge has resulted in inconsistencies in the project. |
- Note 1: The error code and message are the same as in No. 3.
- Note 2: A similar message is displayed in the case of a conflict between associations.
- Note 3: The error code and message are the same as in No. 6.
3. Error details
The following is displayed indented after the message.
- File name
- Displays the file name that contains the conflicting target element.
File : UseCaseModel-A.nmdl
- Model ID
- Displays the ID of the target element whose name is displayed in the error message.
Example Id: XXXX
- Field conflict information
- Lists information about conflicting fields.
Example "{field name}" field: Own is{Changes in the current branch (own)}, Other is{Changes in the specified other branch (other)}.