From: Roland Häder Date: Fri, 21 Oct 2022 11:38:08 +0000 (+0200) Subject: Please cherrry-pick: X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=98680712615f28fbf567d5b5bbc7eb888bc4542e;p=addressbook-war.git Please cherrry-pick: - this is not an argument/parameter of a method. it might have happened due to a logic error, therefore it is an unexpected state --- diff --git a/src/java/org/mxchange/addressbook/beans/contact/AddressbookAdminContactWebRequestBean.java b/src/java/org/mxchange/addressbook/beans/contact/AddressbookAdminContactWebRequestBean.java index 9f3ed0cf..0ed6037b 100644 --- a/src/java/org/mxchange/addressbook/beans/contact/AddressbookAdminContactWebRequestBean.java +++ b/src/java/org/mxchange/addressbook/beans/contact/AddressbookAdminContactWebRequestBean.java @@ -444,13 +444,13 @@ public class AddressbookAdminContactWebRequestBean extends BaseAddressbookBean i throw new NullPointerException("phone.phoneAreaCode is null"); //NOI18N } else if (landLine.getPhoneAreaCode() < 1) { // Abort here - throw new IllegalArgumentException("phone.phoneAreaCode is zero or below."); //NOI18N + throw new IllegalStateException("phone.phoneAreaCode is zero or below."); //NOI18N } else if (landLine.getPhoneNumber() == null) { // Is null throw new NullPointerException("phone.phoneNumber is null"); //NOI18N } else if (landLine.getPhoneNumber() < 1) { // Abort here - throw new IllegalArgumentException("phone.phoneNumber is zero or below."); //NOI18N + throw new IllegalStateException("phone.phoneNumber is zero or below."); //NOI18N } // Set phone number @@ -465,13 +465,13 @@ public class AddressbookAdminContactWebRequestBean extends BaseAddressbookBean i throw new NullPointerException("fax.phoneAreaCode is null"); //NOI18N } else if (fax.getPhoneAreaCode() < 1) { // Abort here - throw new IllegalArgumentException("fax.phoneAreaCode is zero or below."); //NOI18N + throw new IllegalStateException("fax.phoneAreaCode is zero or below."); //NOI18N } else if (fax.getPhoneNumber() == null) { // Is null throw new NullPointerException("fax.phoneNumber is null"); //NOI18N } else if (fax.getPhoneNumber() < 1) { // Abort here - throw new IllegalArgumentException("fax.phoneNumber is zero or below."); //NOI18N + throw new IllegalStateException("fax.phoneNumber is zero or below."); //NOI18N } // Set fax number @@ -486,7 +486,7 @@ public class AddressbookAdminContactWebRequestBean extends BaseAddressbookBean i throw new NullPointerException("cmobile.phoneNumber is null"); //NOI18N } else if (mobile.getPhoneNumber() < 1) { // Abort here - throw new IllegalArgumentException("cmobile.phoneNumber is zero or below."); //NOI18N + throw new IllegalStateException("cmobile.phoneNumber is zero or below."); //NOI18N } // Set cmobile number