]> git.mxchange.org Git - core.git/blobdiff - inc/main/exceptions/database/class_DatabaseException.php
Continued:
[core.git] / inc / main / exceptions / database / class_DatabaseException.php
index b46532b597ae7681d01e1f23cd84c7cd4ad09c45..9e1d08a1bcb5a2455cfd8d8015b448c3b645c14b 100644 (file)
@@ -1,4 +1,10 @@
 <?php
+// Own namespace
+namespace CoreFramework\Database;
+
+// Import framework stuff
+use CoreFramework\Generic\FrameworkException;
+
 /**
  * A general database exception
  *
@@ -33,7 +39,5 @@ class DatabaseException extends FrameworkException {
                // Just call the parent constructor
                parent::__construct($message, $code);
        }
-}
 
-// [EOF]
-?>
+}