I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit 7722ab5f authored by zzz's avatar zzz
Browse files

* Routerconsole: Replace wtf msg w/ something nicer

parent c024398b
No related branches found
No related tags found
No related merge requests found
......@@ -9,7 +9,7 @@ class ContextHelper {
public static RouterContext getContext(String contextId) {
List contexts = RouterContext.listContexts();
if ( (contexts == null) || (contexts.size() <= 0) )
throw new IllegalStateException("No contexts? wtf");
throw new IllegalStateException("No contexts. This is usually because the router is either starting up or shutting down.");
if ( (contextId == null) || (contextId.trim().length() <= 0) )
return (RouterContext)contexts.get(0);
for (int i = 0; i < contexts.size(); i++) {
......@@ -22,4 +22,4 @@ class ContextHelper {
// not found, so just give them the first we can find
return (RouterContext)contexts.get(0);
}
}
\ No newline at end of file
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment