<html>
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  </head>
  <body text="#000000" bgcolor="#FFFFFF">
    <p><font size="4">Hi Tuxic, <br>
      </font></p>
    <p><font size="4">The error message writes the message <font
          face="monospace">#subclass:instanceVariableNames:classVariableNames:poolDictionaries:</font>
        is not understood by the Symbol object. Indeed, a Symbol
        (class), a sort of constant string, does not know how to create
        a subclass, only the Object class knows about it.. <br>
      </font></p>
    <p><font size="4">A symbol is written as #USA, #France, #Germany,
        #EU. A String is written '</font><font size="4"><font size="4">USA',
          'France', 'Germany', 'EU'. When written as </font></font><font
        size="4"><font size="4"><font size="4">USA, France, Germany, EU,
            Cuis expect these ones to be classes.<br>
          </font></font></font></p>
    <p><font size="4">Therefore, in your code you should have written:</font></p>
    <pre class="moz-quote-pre" wrap=""><b>Object</b> subclass: #TheBook
        instanceVariableNames: ''
        classVariableNames: ''
        poolDictionaries: ''
        category: 'The-Cuis-Book'</pre>
    <p><font size="4">and not:</font></p>
    <pre class="moz-quote-pre" wrap=""><b>#Object</b> subclass: #TheBook
        instanceVariableNames: ''
        classVariableNames: ''
        poolDictionaries: ''
        category: 'The-Cuis-Book'</pre>
    <p><font size="4">Hilaire<br>
      </font></p>
    <div class="moz-cite-prefix">Le 26/05/2022 à 17:34, tuxic via
      Cuis-dev a écrit :<br>
    </div>
    <blockquote type="cite"
      cite="mid:20220526153400.l4sedwlb6xl32sbq@solfire">
      <pre class="moz-quote-pre" wrap="">when pressing Ctrl-s I get an error in a big,fat,red dialog, saying in
its title:

MessageNotUnderstood:Symbol>>subclass:instanceVariableNames:classVariableNames:poolDictionaries:
</pre>
    </blockquote>
    <pre class="moz-signature" cols="72">-- 
GNU Dr. Geo
<a class="moz-txt-link-freetext" href="http://drgeo.eu">http://drgeo.eu</a>
<a class="moz-txt-link-freetext" href="http://blog.drgeo.eu">http://blog.drgeo.eu</a></pre>
  </body>
</html>