Author: batosai
Date: 2008-08-31 18:20:15 +0000 (Sun, 31 Aug 2008)
New Revision: 22287
Modified:
trunk/apps/WoT/src/plugins/WoT/Identity.java
Log:
Better wording
Modified: trunk/apps/WoT/src/plugins/WoT/Identity.java
===================================================================
--- trunk/apps/WoT/src/plugins/WoT/Identity.java 2008-08-31 18:14:39 UTC
(rev 22286)
+++ trunk/apps/WoT/src/plugins/WoT/Identity.java 2008-08-31 18:20:15 UTC
(rev 22287)
@@ -63,7 +63,7 @@
ObjectSet<Score> score = db.queryByExample(new Score(treeOwner,
this, 0, 0, 0));
if(score.size() == 0) throw new
NotInTrustTreeException(this.getRequestURI().toString()+" is not in that trust
tree");
- else if(score.size() > 1) throw new
DuplicateScoreException(this.getRequestURI().toString()+" has "+score.size()+"
scores in "+treeOwner.getNickName()+"'s trust tree");
+ else if(score.size() > 1) throw new
DuplicateScoreException(this.getRequestURI().toString()+" ("+ getNickName() +")
has "+score.size()+" scores in "+treeOwner.getNickName()+"'s trust tree");
else return score.next();
}