]> git.mxchange.org Git - shipsimu.git/blobdiff - inc/classes/exceptions/main/class_ConfigEntryNotFoundException.php
Simple exception handler and error handler added, profile update added with stubs
[shipsimu.git] / inc / classes / exceptions / main / class_ConfigEntryNotFoundException.php
index d4283319161413f915924056b0fc0952687da8bc..651e8e030007b89c7f35a8f1572bd2e4f45e2850 100644 (file)
@@ -25,8 +25,8 @@ class ConfigEntryNotFoundException extends FrameworkException {
        /**
         * The constructor
         *
-        * @param               $message                Message from the exception
-        * @param               $code           Code number for the exception
+        * @param               $classArray             Array with class
+        * @param               $code                   Code number for the exception
         * @return      void
         */
        public function __construct (array $classArray, $code) {
@@ -34,7 +34,7 @@ class ConfigEntryNotFoundException extends FrameworkException {
                $classArray = (array) $classArray;
 
                // Add a message around the missing class
-               $message = sprintf("[%s:%d] Konfigurationseintrag <u>%s</u> nicht gefunden.",
+               $message = sprintf("[%s:%d] Configuration entry <u>%s</u> not found.",
                        $classArray[0],
                        $this->getLine(),
                        $classArray[1]