Throw an exception when the node is not connected.
authorDavid ‘Bombe’ Roden <bombe@freenetproject.org>
Thu, 9 Jun 2011 16:31:41 +0000 (18:31 +0200)
committerDavid ‘Bombe’ Roden <bombe@freenetproject.org>
Thu, 9 Jun 2011 16:31:41 +0000 (18:31 +0200)
src/de/todesbaum/jsite/application/Freenet7Interface.java

index a271f6b..ae5c967 100644 (file)
@@ -142,7 +142,7 @@ public class Freenet7Interface {
         */
        public String[] generateKeyPair() throws IOException {
                if (!isNodePresent()) {
-                       return null;
+                       throw new IOException("Node is offline.");
                }
                GenerateSSK generateSSK = new GenerateSSK();
                Client client = new Client(connection, generateSSK);