]> git.mxchange.org Git - jcore.git/blobdiff - src/org/mxchange/jcore/exceptions/UnsupportedDatabaseBackendException.java
Continued with jcore:
[jcore.git] / src / org / mxchange / jcore / exceptions / UnsupportedDatabaseBackendException.java
index 395a5f6480151b2f080609ac630d62e5ddedbe13..023baab5b0845a1b508f82ebf17aeb82a6bf7b1e 100644 (file)
@@ -16,6 +16,8 @@
  */
 package org.mxchange.jcore.exceptions;
 
+import java.text.MessageFormat;
+
 /**
  * An exception thrown when the given backend type is not valid
  * 
@@ -30,7 +32,7 @@ public class UnsupportedDatabaseBackendException extends Exception {
         */
        public UnsupportedDatabaseBackendException (final Throwable cause) {
                // Call super constructor
-               super("Backend is not supported.", cause); //NOI18N
+               super(MessageFormat.format("Backend is not supported: {0}", cause), cause); //NOI18N
        }
        
 }