From: <jom...@us...> - 2014-09-19 12:34:10
|
Revision: 1806 http://sourceforge.net/p/jason/svn/1806 Author: jomifred Date: 2014-09-19 12:34:07 +0000 (Fri, 19 Sep 2014) Log Message: ----------- improve exception on web mind inspector (as suggested by Kenneth Johnson) Modified Paths: -------------- trunk/src/jason/architecture/MindInspectorWeb.java Modified: trunk/src/jason/architecture/MindInspectorWeb.java =================================================================== --- trunk/src/jason/architecture/MindInspectorWeb.java 2014-09-19 01:51:08 UTC (rev 1805) +++ trunk/src/jason/architecture/MindInspectorWeb.java 2014-09-19 12:34:07 UTC (rev 1806) @@ -76,7 +76,7 @@ } catch (BindException e) { httpServerPort++; return startHttpServer(); - } catch (IOException e) { + } catch (Exception e) { e.printStackTrace(); return null; } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |