]> git.mxchange.org Git - core.git/blobdiff - inc/main/exceptions/base64/class_Base64EncodingBadException.php
renamed lib-local.php -> lib-lfdb.php because it really loads the "legendary"
[core.git] / inc / main / exceptions / base64 / class_Base64EncodingBadException.php
index a0f2fb71e8335e8b0bf7199dae3a08a203f94402..5d7ac53896229509f65354fe0b7c282877b8c1dd 100644 (file)
@@ -1,13 +1,20 @@
 <?php
+// Own namespace
+namespace CoreFramework\Deprecated;
+
+// Import framework stuff
+use CoreFramework\Generic\FrameworkException;
+
 /**
  * Thrown if the given data contains characters that are not valid for
  * BASE64-encoding.
  *
  * @author             Roland Haeder <webmaster@shipsimu.org>
  * @version            0.0.0
- * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2015 Core Developer Team
+ * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2017 Core Developer Team
  * @license            GNU GPL 3.0 or any newer version
  * @link               http://www.shipsimu.org
+ * @deprecated Don't use this anymore
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -41,7 +48,5 @@ class Base64EncodingBadException extends FrameworkException {
                // Call parent exception constructor
                parent::__construct($message, $code);
        }
-}
 
-// [EOF]
-?>
+}