|
E4500 Tag Not Closed Correctly
[Previous]  [Next] 
|
![]() |
User Manual [Previous]  [Next] E4500 Tag Not Closed CorrectlyUmple semantic error raised when a FIXML tag is not closed properly
In FIXML, a start tag must be closed properly with its respective end tag. Elements must also
be correctly nested within each other. Example
//The tags are not properly
//nested, causing E4500
<FIXML>
<tag>
<othertag>
</tag>
</othertag>
</FIXML>
Load the above code into UmpleOnline Solution to The Above So the Message No Longer Appears
//Each tag is now correctly
//closed
<FIXML>
<tag>
<othertag>
</othertag>
</tag>
</FIXML>
Load the above code into UmpleOnline |