list of dots Digital Research Alliance of Canada logo  NSERC logo  University of Ottawa logo / UniversitĂ© d'Ottawa

User Manual    [Previous]   [Next]   

E3500 Invalid Template Name

Umple semantic error raised when a template name is not valid

In 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