]> git.mxchange.org Git - shipsimu.git/blobdiff - inc/classes/exceptions/template/class_UnsupportedTemplateEngineException.php
Type-hints fixed, header docs fixed, exceptions deprecated
[shipsimu.git] / inc / classes / exceptions / template / class_UnsupportedTemplateEngineException.php
index 46d15190a33cbe74b5e2491505e28cb1958218dc..596fb5beb7d5f1f0f9c2d161b52a3db9462668a8 100644 (file)
@@ -25,13 +25,13 @@ class UnsupportedTemplateEngineException extends FrameworkException {
        /**
         * The constructor
         *
-        * @param               $class          An array holding our informations
-        * @param               $code           Code number for the exception
+        * @param       $class  Class throwing this class
+        * @param       $code   Code number for the exception
         * @return      void
         */
-       public function __construct (BaseFrameworkSystem $class, $code) {
+       public function __construct (FrameworkInterface $class, $code) {
                // Add a message around the missing class
-               $message = sprintf("Template-Engine %s wird nicht unterstützt.",
+               $message = sprintf("Template-Engine %s not (yet) supported.",
                        $class->__toString()
                );