public bool UpdateNoteText(int noteID, string newText)
 {
     assertConnected();
     try
     {
         return(wsClient.UpdateNoteText(accessToken(), noteID, newText));
     }
     catch (Exception ex)
     {
         throw TranslateException(ex);
     }
 }