Skip to content

Commit

Permalink
[docs] Add a FAQ entry for the error "agent class not found."
Browse files Browse the repository at this point in the history
see #274

Signed-off-by: Stéphane Galland <galland@arakhne.org>
  • Loading branch information
gallandarakhneorg committed Feb 6, 2015
1 parent ecf8868 commit 6fd5cc2
Showing 1 changed file with 20 additions and 1 deletion.
Expand Up @@ -167,7 +167,7 @@ describe "Runtime Environment FAQ" {
* (Menu <code>Window&gt; Preferences&gt; SARL&gt; Installed SREs</code>).
*
* <caution>If the latest stable version of Janus is not working, you should
* download the latest development version</caution>
* download the latest development version.</caution>
*
* @filter(.*)
*/
Expand All @@ -178,6 +178,25 @@ describe "Runtime Environment FAQ" {
propertyFile should haveProperty "preference.installedSREs" -> "Installed SREs"
}

/* When the Janus platform cannot find the class file for the start-up agent, it
* displays the error message <code>"Agent class not found"</code>.
*
* For resolving this problem, you should child if: <ul>
* <li>the class with the given name exists in the application's class path.</li>
* <li>the class name is given as the first command-line argument to your application.</li>
* <li>the class with the given name is a subtype of <code>Agent</code>.</li>
* </ul>
*
* For getting the arguments given to Janus, you could launch Janus with the command line option:
* <code>-cli</code>. This option stops Janus after displaying the command line arguments
* (including the <code>-cli</code> option).
*
* @filter(.*)
*/
fact "Error: \"Agent class not found.\"" {
true
}

}

/*
Expand Down

0 comments on commit 6fd5cc2

Please sign in to comment.