From: David ‘Bombe’ Roden Date: Sat, 3 May 2008 22:31:16 +0000 (+0000) Subject: memorize exception X-Git-Tag: v0.1.1~138 X-Git-Url: https://git.pterodactylus.net/?a=commitdiff_plain;h=f41043557fe9cf82ae5c52d51a1d4f07f27e505d;p=jFCPlib.git memorize exception git-svn-id: http://trooper/svn/projects/jFCPlib/branch/high-level-client@849 c3eda9e8-030b-0410-8277-bc7414b0a119 --- diff --git a/src/net/pterodactylus/fcp/FcpConnectionHandler.java b/src/net/pterodactylus/fcp/FcpConnectionHandler.java index a8132c3..ba6b86b 100644 --- a/src/net/pterodactylus/fcp/FcpConnectionHandler.java +++ b/src/net/pterodactylus/fcp/FcpConnectionHandler.java @@ -97,8 +97,8 @@ class FcpConnectionHandler implements Runnable { String value = line.substring(equalSign + 1); assert fcpMessage != null: "fcp message is null"; fcpMessage.setField(field, value); - } catch (IOException e) { - throwable = null; + } catch (IOException ioe1) { + throwable = ioe1; break; } }