|
E3500 Invalid Template Name
[Previous]  [Next] 
|
![]() |
User Manual [Previous]  [Next] E3500 Invalid Template NameUmple semantic error raised when a template name is not validIn Umple, a template name must be alphanumeric and
start with a letter or the symbol '_'. Example
//The name of the template is
//not valid and generates
//an error
class A {
!template <<!output!>>
}
Load the above code into UmpleOnline Solution to The Above So the Message No Longer Appears
//The name of the template
//is valid in the following
class A {
template <<!output!>>
}
Load the above code into UmpleOnline |