From 64c95fd653177361f7e691ab345ed54d42ef6aed Mon Sep 17 00:00:00 2001 From: jestin Date: Mon, 12 Jan 2004 09:48:49 +0000 Subject: 1.2.5 pre --- src/IvyDaemon.java | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'src/IvyDaemon.java') diff --git a/src/IvyDaemon.java b/src/IvyDaemon.java index 56019c1..b843a63 100644 --- a/src/IvyDaemon.java +++ b/src/IvyDaemon.java @@ -119,7 +119,11 @@ public class IvyDaemon implements Runnable { while (true) { msg=in.readLine(); if (msg==null) break; - bus.sendMsg(msg); + try { + bus.sendMsg(msg); + } catch (IvyException ie) { + System.out.println("incorrect characters whithin the message. Not sent"); + } } } catch (IOException ioe) { traceDebug("Subreader exception ..."); -- cgit v1.1