* @param contact Contact that is already added
*/
public ContactAlreadyAddedException (final Contact contact) {
- super(MessageFormat.format("Contact with gender={0}, firstName={1} and familyName={2} already added.", contact.getContactGender(), contact.getContactFirstName(), contact.getContactFamilyName()));
+ super(MessageFormat.format("Contact with gender={0}, firstName={1} and familyName={2} already added.", contact.getContactGender(), contact.getContactFirstName(), contact.getContactFamilyName())); //NOI18N
}
/**
* Default constructor, may be used if no contact instance is available
*/
public ContactAlreadyAddedException () {
- super("Contact already added");
+ super("Contact already added"); //NOI18N
}
}