]> git.mxchange.org Git - jaddressbook-share-lib.git/commitdiff
The exception's message now contains the thrown exception's message, too.
authorRoland Haeder <roland@mxchange.org>
Sun, 10 Apr 2016 11:32:28 +0000 (13:32 +0200)
committerRoland Haeder <roland@mxchange.org>
Sun, 10 Apr 2016 14:11:20 +0000 (16:11 +0200)
updated jar(s)

12 files changed:
lib/jcontacts-business-core.jar
lib/jcontacts-core.jar
lib/jcore-logger-lib.jar
lib/jcore-swing.jar
lib/jcore.jar
lib/jcoreee.jar
lib/jcountry-core.jar
lib/jphone-core.jar
lib/juser-core.jar
lib/juser-lib.jar
src/org/mxchange/addressbook/validator/addressbook/AddressbookIdValidator.java
src/org/mxchange/addressbook/validator/user/UserIdValidator.java

index a8151da6d40692530a7b4bf7689518580f3874c3..79b2b390e9a1ac02d86fc7c33c147812e88ef41e 100644 (file)
Binary files a/lib/jcontacts-business-core.jar and b/lib/jcontacts-business-core.jar differ
index 59559efe241a09d9c37e438697cafbb84fa98ae1..b94b468717c61b0b3d1b03d19f855d1a15815723 100644 (file)
Binary files a/lib/jcontacts-core.jar and b/lib/jcontacts-core.jar differ
index 6203f5f227028136a1e44993abb321c12945292c..a64a5b07ee4d08c72c782595a9bea0360d8cd8f5 100644 (file)
Binary files a/lib/jcore-logger-lib.jar and b/lib/jcore-logger-lib.jar differ
index b79d8c17cbb276675b0a92e8b0685bdfc91a9c52..2ce290a46417563a80396c8a88331e1af343800f 100644 (file)
Binary files a/lib/jcore-swing.jar and b/lib/jcore-swing.jar differ
index 478823ba79010c07f074eadf26d182af5b6a75ac..11f3a6a56cf7e027a8bd970a4eec384505b79a56 100644 (file)
Binary files a/lib/jcore.jar and b/lib/jcore.jar differ
index 71d0e1cc18e6ad9ad49df8bd096be737ca33b3c8..ad61871dc3c447ae7b78f28e4fee6bf4892cb44f 100644 (file)
Binary files a/lib/jcoreee.jar and b/lib/jcoreee.jar differ
index 01a8041b9818458cfcaf5783e01d872b7be6d95c..afe1fbd61608715cb06be68f25af5f7a64749aa8 100644 (file)
Binary files a/lib/jcountry-core.jar and b/lib/jcountry-core.jar differ
index be67aae9533634e3354ff8cb71c1428268e64e72..62060223bfdaf71ba867fe9fc2cf8b9667581614 100644 (file)
Binary files a/lib/jphone-core.jar and b/lib/jphone-core.jar differ
index 5d51db160dd34f57e4396d21845d8b83d6ca675d..4599325e92b862d649145a8aa1aecd222a96ce84 100644 (file)
Binary files a/lib/juser-core.jar and b/lib/juser-core.jar differ
index fdf6c73fa2eb69e4712ec404e9017de768b943d5..b6cd93dc36b3380e4dd6bcb76217ac6459517ef2 100644 (file)
Binary files a/lib/juser-lib.jar and b/lib/juser-lib.jar differ
index 75c753ae688bb62710e16682c067c44b96538063..d97d8ac62d74c91f26a97ef0fa52db95379794ba 100644 (file)
@@ -72,7 +72,7 @@ public class AddressbookIdValidator extends BaseLongValidator {
                        this.addressbookBean = (AddressbookSessionBeanRemote) context.lookup("java:global/addressbook-ejb/addressbook!org.mxchange.addressbook.model.addressbook.AddressbookSessionBeanRemote"); //NOI18N
                } catch (final NamingException ex) {
                        // Continue to throw it
-                       throw new RuntimeException("context.lookup() failed.", ex); //NOI18N
+                       throw new RuntimeException(MessageFormat.format("context.lookup() failed: {0}", ex.getMessage()), ex); //NOI18N
                }
        }
 
index de65c6ffa0380e963ddf3c1543ea749ea535e57b..93923a9f5a693b06f7e2a5e3d75764eea576d732 100644 (file)
@@ -81,7 +81,7 @@ public class UserIdValidator extends BaseLongValidator implements Validator {
                        this.userBean = (UserSessionBeanRemote) context.lookup("java:global/addressbook-ejb/user!org.mxchange.jusercore.model.user.UserSessionBeanRemote"); //NOI18N
                } catch (final NamingException ex) {
                        // Continue to throw it
-                       throw new RuntimeException("context.lookup() failed.", ex); //NOI18N
+                       throw new RuntimeException(MessageFormat.format("context.lookup() failed: {0}", ex.getMessage()), ex); //NOI18N
                }
        }