]> git.mxchange.org Git - core.git/blobdiff - inc/main/exceptions/template/class_UnsupportedTemplateEngineException.php
Introduced namespaces:
[core.git] / inc / main / exceptions / template / class_UnsupportedTemplateEngineException.php
index 1598276c94854b5807adf2fc6eeca74f668649f3..06ae2fb6f1115ff1a6e57fba976eb1a6807df766 100644 (file)
@@ -1,4 +1,10 @@
 <?php
+// Own namespace
+namespace CoreFramework\Template;
+
+// Load framework stuff
+use CoreFramework\Generic\FrameworkInterface;
+
 /**
  * An exception thrown when the template engine instance is not supported
  *
@@ -38,7 +44,5 @@ class UnsupportedTemplateEngineException extends FrameworkException {
                // Call parent constructor
                parent::__construct($message, $code);
        }
-}
 
-// [EOF]
-?>
+}