|
W050 Target State Not Found
[Previous]  [Next] 
|
![]() |
User Manual [Previous]  [Next] W050 Target State Not FoundUmple semantic warning reported when the target state of a transition is not listed.An end state (with no outgoing transitions) is generated. The purpose of the warning is to alert the developer that they may have a typographical error in the target state name. Example
// This example generates the error message
class X {
sm {
s1 {
e1 -> s2;
}
}
}
Load the above code into UmpleOnline Solution to The Above So the Message No Longer Appears
// This example solves the problem
class X {
sm {
s1 {
e1 -> s2;
}
s2 {}
}
}
Load the above code into UmpleOnline |