changed exception message access
authorcantor <cantor@ab3bd59b-922f-494d-bb5f-6f0a3c29deca>
Mon, 17 Jun 2002 05:25:35 +0000 (05:25 +0000)
committercantor <cantor@ab3bd59b-922f-494d-bb5f-6f0a3c29deca>
Mon, 17 Jun 2002 05:25:35 +0000 (05:25 +0000)
git-svn-id: https://subversion.switch.ch/svn/shibboleth/java-idp/trunk@131 ab3bd59b-922f-494d-bb5f-6f0a3c29deca

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

index 6be5897..ebbd17f 100755 (executable)
@@ -284,7 +284,7 @@ public class ShireServlet extends HttpServlet
         {
             out.println("<H4>There was a problem with this submission.</H4>");
             out.println("<P>The system detected the following error while processing your submission:</P>");
-            out.println("<BLOCKQUOTE>" + e.toString() + "</BLOCKQUOTE>");
+            out.println("<BLOCKQUOTE>" + e.getMessage() + "</BLOCKQUOTE>");
             out.println("<P>Please contact this site's administrator to resolve the problem.</P>");
             out.println("</BODY></HTML>");
         }