]> git.mxchange.org Git - jphone-core.git/commitdiff
Contined a bit:
authorRoland Häder <roland@mxchange.org>
Wed, 17 Aug 2016 13:14:39 +0000 (15:14 +0200)
committerRoland Häder <roland@mxchange.org>
Wed, 17 Aug 2016 13:14:39 +0000 (15:14 +0200)
- added exceptions for not-linked fax/land-line numbers
- renamed cellphone -> mobile

src/org/mxchange/jphone/exceptions/FaxNumberNotLinkedException.java [new file with mode: 0644]
src/org/mxchange/jphone/exceptions/LandLineNumberNotLinkedException.java [new file with mode: 0644]
src/org/mxchange/jphone/exceptions/MobileNumberNotLinkedException.java

diff --git a/src/org/mxchange/jphone/exceptions/FaxNumberNotLinkedException.java b/src/org/mxchange/jphone/exceptions/FaxNumberNotLinkedException.java
new file mode 100644 (file)
index 0000000..971f8c8
--- /dev/null
@@ -0,0 +1,44 @@
+/*
+ * Copyright (C) 2016 Roland Haeder
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ */
+package org.mxchange.jphone.exceptions;
+
+import java.text.MessageFormat;
+import org.mxchange.jphone.phonenumbers.fax.DialableFaxNumber;
+
+/**
+ * An exception thrown when a fax number is not linked but should be.
+ * <p>
+ * @author Roland Haeder<roland@mxchange.org>
+ */
+public class FaxNumberNotLinkedException extends Exception {
+
+       /**
+        * Serial number
+        */
+       private static final long serialVersionUID = 18_964_581_681_985_599L;
+
+       /**
+        * Counstructor with fax number
+        * <p>
+        * @param faxNumber Fax number
+        */
+       public FaxNumberNotLinkedException (final DialableFaxNumber faxNumber) {
+               // Call super constructor with message
+               super(MessageFormat.format("faxNumber={0} with phoneId={1} is not linked.", faxNumber, faxNumber.getPhoneId())); //NOI18N
+       }
+
+}
diff --git a/src/org/mxchange/jphone/exceptions/LandLineNumberNotLinkedException.java b/src/org/mxchange/jphone/exceptions/LandLineNumberNotLinkedException.java
new file mode 100644 (file)
index 0000000..3fc798b
--- /dev/null
@@ -0,0 +1,44 @@
+/*
+ * Copyright (C) 2016 Roland Haeder
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ */
+package org.mxchange.jphone.exceptions;
+
+import java.text.MessageFormat;
+import org.mxchange.jphone.phonenumbers.landline.DialableLandLineNumber;
+
+/**
+ * An exception thrown when a land-line number is not linked but should be.
+ * <p>
+ * @author Roland Haeder<roland@mxchange.org>
+ */
+public class LandLineNumberNotLinkedException extends Exception {
+
+       /**
+        * Serial number
+        */
+       private static final long serialVersionUID = 18_964_581_681_985_598L;
+
+       /**
+        * Counstructor with land-line number
+        * <p>
+        * @param landLineNumber Cell phone number
+        */
+       public LandLineNumberNotLinkedException (final DialableLandLineNumber landLineNumber) {
+               // Call super constructor with message
+               super(MessageFormat.format("landLineNumber={0} with phoneId={1} is not linked.", landLineNumber, landLineNumber.getPhoneId())); //NOI18N
+       }
+
+}
index 4b959db446c6a244894cf5c973b73db217b7f8a6..fefe450cd4ab2d0ea5a43f1e15cf753b373225b7 100644 (file)
@@ -20,7 +20,7 @@ import java.text.MessageFormat;
 import org.mxchange.jphone.phonenumbers.mobile.DialableMobileNumber;
 
 /**
- * An exception thrown when a cell phone number is not linked but should be.
+ * An exception thrown when a mobile number is not linked but should be.
  * <p>
  * @author Roland Haeder<roland@mxchange.org>
  */
@@ -32,13 +32,13 @@ public class MobileNumberNotLinkedException extends Exception {
        private static final long serialVersionUID = 18_964_581_681_985_597L;
 
        /**
-        * Counstructor with cell phone instance
+        * Counstructor with mobile number
         * <p>
-        * @param cellphoneNumber Cell phone instance
+        * @param mobileNumber Mobile number
         */
-       public MobileNumberNotLinkedException (final DialableMobileNumber cellphoneNumber) {
+       public MobileNumberNotLinkedException (final DialableMobileNumber mobileNumber) {
                // Call super constructor with message
-               super(MessageFormat.format("cellphoneNumber={0} with phoneId={1} is not linked.", cellphoneNumber, cellphoneNumber.getPhoneId())); //NOI18N
+               super(MessageFormat.format("mobileNumber={0} with phoneId={1} is not linked.", mobileNumber, mobileNumber.getPhoneId())); //NOI18N
        }
 
 }