public RuntimeAuthorizationException(IPerson person, String activity, String target) {
   super(
       "Person ["
           + person.getUserName()
           + "] does not have permission "
           + activity
           + " on "
           + target);
 }