5253545556575859
*/ public void addHero(Hero hero) throws FullPartyException { if (getSize() < MAX_SIZE) { heroes.add(hero); } else { throw new FullPartyException(Parameters.getText("Exceptions", "FullParty")); } }