]> git.mxchange.org Git - addressbook-lib.git/blobdiff - src/org/mxchange/addressbook/exceptions/ContactAlreadyAddedException.java
auto-formatted project + updated jars
[addressbook-lib.git] / src / org / mxchange / addressbook / exceptions / ContactAlreadyAddedException.java
index 3eda782414cf5521bc317b840c50a0fa8a69afba..c59909f7eff48ed8908a07c725a333690d4a2038 100644 (file)
@@ -21,10 +21,11 @@ import org.mxchange.jcore.model.contact.Contact;
 
 /**
  * Thrown if the given Contact instance is already added
- * 
+ * <p>
  * @author Roland Haeder
  */
 public class ContactAlreadyAddedException extends Exception {
+
        /**
         * Serial number
         */
@@ -32,7 +33,7 @@ public class ContactAlreadyAddedException extends Exception {
 
        /**
         * Constructor with a Contact instance
-        *
+        * <p>
         * @param contact Contact that is already added
         */
        public ContactAlreadyAddedException (final Contact contact) {
@@ -45,5 +46,5 @@ public class ContactAlreadyAddedException extends Exception {
        public ContactAlreadyAddedException () {
                super("Contact already added");
        }
-       
+
 }