/** * Set the value. * * @param value to set * @throws SdpException if the value is null */ public void setValue(String value) throws SdpException { if (value == null) throw new SdpException("The value is null"); else { emailAddress.setDisplayName(value); } }