177178179180181182183184185186187
{ Throwable ex = e.getTargetException(); if (ex != null && ex.getMessage().contains("Security")) { throw new WebServiceSecurityException(event, e); } else { throw e; }
188189190191192193194195196197198