Altered error handling so that local system configuration information is not exposed...
authorwassa <wassa@ab3bd59b-922f-494d-bb5f-6f0a3c29deca>
Wed, 4 Sep 2002 18:59:37 +0000 (18:59 +0000)
committerwassa <wassa@ab3bd59b-922f-494d-bb5f-6f0a3c29deca>
Wed, 4 Sep 2002 18:59:37 +0000 (18:59 +0000)
git-svn-id: https://subversion.switch.ch/svn/shibboleth/java-idp/trunk@278 ab3bd59b-922f-494d-bb5f-6f0a3c29deca

src/edu/internet2/middleware/shibboleth/shire/ShireServlet.java

index d62bee9..5b29bb0 100755 (executable)
@@ -444,7 +444,8 @@ public class ShireServlet extends HttpServlet {
                        response.addCookie(cookie);
 
                } catch (IOException e) {
-                       throw new ShireException("Unable to write session to file (" + filename + ") : " + e);
+                       log.error("Unable to write session to file (" + filename + ") : " + e);
+                       throw new ShireException("Unable to share session with SHAR.");
                }
        }