From: wassa Date: Fri, 26 Mar 2004 07:26:01 +0000 (+0000) Subject: Better error message. X-Git-Tag: v2.1.3~1701 X-Git-Url: https://repo.niif.hu/gitweb/gitweb.cgi?p=java-idp.git;a=commitdiff_plain;h=3c83b121690425a4507ee7d6d49fc40ae454e454 Better error message. git-svn-id: https://subversion.switch.ch/svn/shibboleth/java-idp/trunk@935 ab3bd59b-922f-494d-bb5f-6f0a3c29deca --- diff --git a/src/edu/internet2/middleware/shibboleth/common/ShibResource.java b/src/edu/internet2/middleware/shibboleth/common/ShibResource.java index a9fa8dd..6f477ae 100755 --- a/src/edu/internet2/middleware/shibboleth/common/ShibResource.java +++ b/src/edu/internet2/middleware/shibboleth/common/ShibResource.java @@ -74,7 +74,7 @@ public class ShibResource { resource = requester.getResource(name); } if (resource == null) { - throw new ResourceNotAvailableException("ShibResource could not be found at the specified location."); + throw new ResourceNotAvailableException("ShibResource could not be found at the specified location: " + name); } }