343536373839404142
} public GreenMailUser getUser(String username) throws UserException { GreenMailUser user = _manager.getUser(username); if (null == user) { throw new NoSuchUserException(username + " doesn't exist"); } return user; }