]> git.mxchange.org Git - core.git/commitdiff
No HTML in exceptions
authorRoland Häder <roland@mxchange.org>
Wed, 8 Aug 2012 20:20:09 +0000 (20:20 +0000)
committerRoland Häder <roland@mxchange.org>
Wed, 8 Aug 2012 20:20:09 +0000 (20:20 +0000)
41 files changed:
inc/classes/exceptions/auth/class_UserAuthorizationException.php
inc/classes/exceptions/compressor/class_MismatchingCompressorsException.php
inc/classes/exceptions/database/general/class_SqlException.php
inc/classes/exceptions/database/local_file/class_SavePathIsNoDirectoryException.php
inc/classes/exceptions/database/local_file/class_SavePathReadProtectedException.php
inc/classes/exceptions/database/local_file/class_SavePathWriteProtectedException.php
inc/classes/exceptions/helper/class_FormClosedException.php
inc/classes/exceptions/helper/class_FormGroupClosedException.php
inc/classes/exceptions/helper/class_HelperNoPreviousOpenedSubGroupException.php
inc/classes/exceptions/helper/class_NoGroupOpenedException.php
inc/classes/exceptions/helper/class_UserInstanceMissingException.php
inc/classes/exceptions/io/class_DirPointerNotOpenedException.php
inc/classes/exceptions/io/class_FileIoException.php
inc/classes/exceptions/io/class_FileReadProtectedException.php
inc/classes/exceptions/io/class_InvalidDataLengthException.php
inc/classes/exceptions/io/class_InvalidMD5ChecksumException.php
inc/classes/exceptions/io/class_PathIsNoDirectoryException.php
inc/classes/exceptions/io/class_PathReadProtectedException.php
inc/classes/exceptions/language/class_InvalidLanguagePathStringException.php
inc/classes/exceptions/language/class_LanguagePathIsNoDirectoryException.php
inc/classes/exceptions/language/class_LanguagePathReadProtectedException.php
inc/classes/exceptions/main/class_ClassMismatchException.php
inc/classes/exceptions/main/class_DimNotFoundInArrayException.php
inc/classes/exceptions/main/class_EmptyVariableException.php
inc/classes/exceptions/main/class_IndexOutOfBoundsException.php
inc/classes/exceptions/main/class_InvalidArrayCountException.php
inc/classes/exceptions/main/class_InvalidCommandInstanceException.php
inc/classes/exceptions/main/class_InvalidInterfaceException.php
inc/classes/exceptions/main/class_MissingArrayElementsException.php
inc/classes/exceptions/main/class_NoClassException.php
inc/classes/exceptions/main/class_NoConfigEntryException.php
inc/classes/exceptions/main/class_VariableIsNotSetException.php
inc/classes/exceptions/result/class_InvalidDatabaseResultException.php
inc/classes/exceptions/state/class_InvalidStateInstanceException.php
inc/classes/exceptions/template/class_BasePathIsNoDirectoryException.php
inc/classes/exceptions/template/class_BasePathReadProtectedException.php
inc/classes/exceptions/template/class_InvalidBasePathStringException.php
inc/classes/exceptions/template/class_UnexpectedTemplateTypeException.php
inc/classes/exceptions/user/class_UserEmailMissingException.php
inc/classes/exceptions/user/class_UserPasswordMismatchException.php
inc/classes/exceptions/user/class_UsernameMissingException.php

index 07ec992ff686137593b14d187f7a49d7edf69875..7ce27354f7e82c3cda1387bb229ef8dc9a440927 100644 (file)
@@ -31,7 +31,7 @@ class UserAuthorizationException extends FrameworkException {
         */
        public function __construct (Filterable $filterInstance, $code) {
                // Construct the message
         */
        public function __construct (Filterable $filterInstance, $code) {
                // Construct the message
-               $message = sprintf("[%s:%d] Authorization has failed. Error code <span class=\"exception_reason\">%s</span>",
+               $message = sprintf("[%s:%d] Authorization has failed. Error code %s",
                        $filterInstance->__toString(),
                        $this->getLine(),
                        $this->getHexCode($code)
                        $filterInstance->__toString(),
                        $this->getLine(),
                        $this->getHexCode($code)
index f400592115acaa07dfdc9105f9aae333b9f5e1fc..65a8f35a910051a135ad9c2ccc3a4a08806f66d7 100644 (file)
@@ -31,7 +31,7 @@ class MismatchingCompressorsException extends FrameworkException {
         */
        public function __construct (array $array, $code) {
                // Add a message around the missing class
         */
        public function __construct (array $array, $code) {
                // Add a message around the missing class
-               $message = sprintf("[%s:%d] Der Kompressor <span class=\"exception_reason\">%s</span> zu den geladenen Daten aus <span class=\"exception_reason\">%s</span> und der aktuell verwendete Kompressor <span class=\"exception_reason\">%s</span> stimmen nicht &uuml;berein!",
+               $message = sprintf("[%s:%d] Der Kompressor %s zu den geladenen Daten aus %s und der aktuell verwendete Kompressor %s stimmen nicht &uuml;berein!",
                        $array[0]->__toString(),
                        $this->getLine(),
                        strtoupper($array[1]),
                        $array[0]->__toString(),
                        $this->getLine(),
                        strtoupper($array[1]),
index af6ebf69fb221f8a04c964b5453ca3a9af46acac..fdbeb8bff6db6892afed4a714c35bccb4a75f9db 100644 (file)
@@ -31,7 +31,7 @@ class SqlException extends DatabaseException {
         */
        public function __construct (array $msgArray, $code) {
                // Construct the message
         */
        public function __construct (array $msgArray, $code) {
                // Construct the message
-               $message = sprintf("[%s:%d] SQL error detected. Message from database: <span class=\"exception_reason\">%s</span>, code: <span class=\"exception_reason\">%s</span>.",
+               $message = sprintf("[%s:%d] SQL error detected. Message from database: %s, code: %s.",
                        $msgArray[0]->__toString(),
                        $this->getLine(),
                        $msgArray[1],
                        $msgArray[0]->__toString(),
                        $this->getLine(),
                        $msgArray[1],
index 95223b435de0d5649ed108367c8ab9e28adeeb2f..829039953b7f3c0ad2bc1f35595395307696b28a 100644 (file)
@@ -31,7 +31,7 @@ class SavePathIsNoDirectoryException extends DatabaseException {
         */
        public function __construct ($path, $code) {
                // Add a message around the missing class
         */
        public function __construct ($path, $code) {
                // Add a message around the missing class
-               $message = sprintf("Der angegebene Speicherpfad <span class=\"exception_reason\">%s</span> ist ung&uuml;tig (kein Pfad).", $path);
+               $message = sprintf("Save path %s is no directory.", $path);
 
                // Call parent constructor
                parent::__construct($message, $code);
 
                // Call parent constructor
                parent::__construct($message, $code);
index 58ee53e06ff08fe81e67efe69faefde6754302ff..9a294fcc94220cb2822459cdd43ea490626364da 100644 (file)
@@ -31,7 +31,7 @@ class SavePathReadProtectedException extends DatabaseException {
         */
        public function __construct ($path, $code) {
                // Add a message around the missing class
         */
        public function __construct ($path, $code) {
                // Add a message around the missing class
-               $message = sprintf("Der Pfad <span class=\"exception_reason\">%s</span> ist lese-gesch&uuml;tzt. Bitte Zugriffsrechte (CHMOD) zum Lesen setzen.", $path);
+               $message = sprintf("Path %s is not readable. Please fix your file access rights.", $path);
 
                // Call parent constructor
                parent::__construct($message, $code);
 
                // Call parent constructor
                parent::__construct($message, $code);
index ccad0e8afe33086aad6ca3976b60db16ce4e365b..599346e09de4f848cb85424a92517b5d814245b3 100644 (file)
@@ -31,7 +31,7 @@ class SavePathWriteProtectedException extends DatabaseException {
         */
        public function __construct ($path, $code) {
                // Add a message around the missing class
         */
        public function __construct ($path, $code) {
                // Add a message around the missing class
-               $message = sprintf("Der angegebene Speicherpfad <span class=\"exception_reason\">%s</span> ist schreibgesch&uuml;tzt. Bitte Zugriffsrechte (CHMOD) entsprechend setzen.", $path);
+               $message = sprintf("Save path %s is write-protected. Please fix your file permissions.", $path);
 
                // Call parent constructor
                parent::__construct($message, $code);
 
                // Call parent constructor
                parent::__construct($message, $code);
index 24ce8eb46e3f99ec8c7629adb6b93118ce9d8749..56eb7d9c757c38cc307dbfa36880e46eb95fdd76 100644 (file)
@@ -32,7 +32,7 @@ class FormClosedException extends FrameworkException {
         */
        public function __construct (array $classArray, $code) {
                // Add a message around the missing class
         */
        public function __construct (array $classArray, $code) {
                // Add a message around the missing class
-               $message = sprintf("[%s:%d] Could not add form element <span class=\"exception_reason\">%s</span> because form is closed.",
+               $message = sprintf("[%s:%d] Could not add form element %s because form is closed.",
                        $classArray[0]->__toString(),
                        $this->getLine(),
                        $classArray[1]
                        $classArray[0]->__toString(),
                        $this->getLine(),
                        $classArray[1]
index c6f9eb39c8f26c60fb674ed7fff0bf82246778c5..188f7d652dbd9f2e201eb32c55ebab7e70277b75 100644 (file)
@@ -31,7 +31,7 @@ class FormGroupClosedException extends FrameworkException {
         */
        public function __construct (array $classArray, $code) {
                // Add a message around the missing class
         */
        public function __construct (array $classArray, $code) {
                // Add a message around the missing class
-               $message = sprintf("[%s:%d] Could not add sub group <span class=\"exception_reason\">%s</span> because no form group has been opened before.",
+               $message = sprintf("[%s:%d] Could not add sub group %s because no form group has been opened before.",
                        $classArray[0]->__toString(),
                        $this->getLine(),
                        $classArray[1]
                        $classArray[0]->__toString(),
                        $this->getLine(),
                        $classArray[1]
index f63890ff8bbf80c6eedd6cb6cb1179acbe38099d..44c16db565ecdbc042a844e937b3a43cf9b43962 100644 (file)
@@ -31,7 +31,7 @@ class HelperNoPreviousOpenedSubGroupException extends FrameworkException {
         */
        public function __construct (array $msgArray, $code) {
                // Add a message around the missing class
         */
        public function __construct (array $msgArray, $code) {
                // Add a message around the missing class
-               $message = sprintf("[%s:%d] Sub group not opened before. Raw text follows: <span class=\"exception_reason\">%s</span>",
+               $message = sprintf("[%s:%d] Sub group not opened before. Raw text follows: %s",
                        $msgArray[0]->__toString(),
                        $this->getLine(),
                        $msgArray[1]
                        $msgArray[0]->__toString(),
                        $this->getLine(),
                        $msgArray[1]
index 4c3f98d530facf4f690f38f8f625d38d9729306d..64618f9762d04c5e64f49e3e23770af54c91a38c 100644 (file)
@@ -31,7 +31,7 @@ class NoGroupOpenedException extends FrameworkException {
         */
        public function __construct (array $msgArray, $code) {
                // Add a message around the missing class
         */
        public function __construct (array $msgArray, $code) {
                // Add a message around the missing class
-               $message = sprintf("[%s:%d] Group not opened before. Raw text follows: <span class=\"exception_reason\">%s</span>",
+               $message = sprintf("[%s:%d] Group not opened before. Raw text follows: %s",
                        $msgArray[0]->__toString(),
                        $this->getLine(),
                        $msgArray[1]
                        $msgArray[0]->__toString(),
                        $this->getLine(),
                        $msgArray[1]
index 9c7a797c2eaf6a01cfba315c106301ebc4554aec..a07a0a84571d240f58df84a083ea7256348ab7d5 100644 (file)
@@ -31,7 +31,7 @@ class UserInstanceMissingException extends FrameworkException {
         */
        public function __construct (array $classArray, $code) {
                // Add a message around the missing class
         */
        public function __construct (array $classArray, $code) {
                // Add a message around the missing class
-               $message = sprintf("[%s:%d] Registry key <span class=\"exception_reason\">%s</span> does not include a class with implemented interface <u>Manageable(User|Guest)</u>.",
+               $message = sprintf("[%s:%d] Registry key %s does not include a class with implemented interface <u>Manageable(User|Guest)</u>.",
                        $classArray[0]->__toString(),
                        $this->getLine(),
                        $classArray[1]
                        $classArray[0]->__toString(),
                        $this->getLine(),
                        $classArray[1]
index 53d93db8c39ab3f4aa35fdcbe3662f00500fc749..adebc60760caf5ec878fe2a10678db729751f567 100644 (file)
@@ -31,7 +31,7 @@ class DirPointerNotOpenedException extends FrameworkException {
         */
        public function __construct ($path, $code) {
                // Add a message around the missing class
         */
        public function __construct ($path, $code) {
                // Add a message around the missing class
-               $message = sprintf("F&uuml;r den Pfad <span class=\"exception_reason\">%s</span> konnte kein Pointer initialisiert werden.", $path);
+               $message = sprintf("F&uuml;r den Pfad %s konnte kein Pointer initialisiert werden.", $path);
 
                // Call parent constructor
                parent::__construct($message, $code);
 
                // Call parent constructor
                parent::__construct($message, $code);
index b7f872eee20b0db9a830352799c2feaf81fff3c5..990147f5b10b3b07cbcdb1bc250b25de941fdb61 100644 (file)
@@ -31,7 +31,7 @@ class FileIoException extends FrameworkException {
         */
        public function __construct ($fqfn, $code) {
                // Add a message around the missing class
         */
        public function __construct ($fqfn, $code) {
                // Add a message around the missing class
-               $message = sprintf("A problem has been detected reading or writing to/from <span class=\"exception_reason\">%s</span>.", $fqfn);
+               $message = sprintf("A problem has been detected reading or writing to/from %s.", $fqfn);
 
                // Call parent constructor
                parent::__construct($message, $code);
 
                // Call parent constructor
                parent::__construct($message, $code);
index 298b82fc79342a1be806fbca2f9f9e9ed93a8d7e..353a4ed8da71f0e534846b1eb8791e961c9c448c 100644 (file)
@@ -31,7 +31,7 @@ class FileReadProtectedException extends FrameworkException {
         */
        public function __construct ($fileName, $code) {
                // Add a message around the missing class
         */
        public function __construct ($fileName, $code) {
                // Add a message around the missing class
-               $message = sprintf("File <span class=\"exception_reason\">%s</span> is read-protected. Please set read access rights (CHMOD).", $fileName);
+               $message = sprintf("File %s is read-protected. Please set read access rights (CHMOD).", $fileName);
 
                // Call parent constructor
                parent::__construct($message, $code);
 
                // Call parent constructor
                parent::__construct($message, $code);
index c34b24acbf77dd19aa0d3e23941385bf07516c73..e5363cdb883338ea9d824f86a47ca5fb65e4a71a 100644 (file)
@@ -31,7 +31,7 @@ class InvalidDataLengthException extends FrameworkException {
         */
        public function __construct (array $msgArray, $code) {
                // Add a message around the missing class
         */
        public function __construct (array $msgArray, $code) {
                // Add a message around the missing class
-               $message = sprintf("[%s:%d] Eine unerwartete Datenl&auml;nge von <span class=\"exception_reason\">%s</span> Byte ist aufgetreten. <span class=\"exception_reason\">%s</span> wurden erwartet!",
+               $message = sprintf("[%s:%d] Eine unerwartete Datenl&auml;nge von %s Byte ist aufgetreten. %s wurden erwartet!",
                        $msgArray[0]->__toString(),
                        $this->getLine(),
                        $msgArray[1],
                        $msgArray[0]->__toString(),
                        $this->getLine(),
                        $msgArray[1],
index b4502787d992948a2f231dce484c2a8335061c82..a85a4832da1d1dc0a5d7ac51a56ee1343ff30fd5 100644 (file)
@@ -31,7 +31,7 @@ class InvalidMD5ChecksumException extends FrameworkException {
         */
        public function __construct (array $msgArray, $code) {
                // Add a message around the missing class
         */
        public function __construct (array $msgArray, $code) {
                // Add a message around the missing class
-               $message = sprintf("[%s:%d] Die MD5-Pr&uuml;fsummen <span class=\"exception_reason\">%s</span> und <span class=\"exception_reason\">%s</span> stimmen nicht &uuml;berein!",
+               $message = sprintf("[%s:%d] Die MD5-Pr&uuml;fsummen %s und %s stimmen nicht &uuml;berein!",
                        $msgArray[0]->__toString(),
                        $this->getLine(),
                        $msgArray[1],
                        $msgArray[0]->__toString(),
                        $this->getLine(),
                        $msgArray[1],
index 4cb0df89cf9a3757a7e142d7fdd80455e40c096e..1ddfe8be21042281f88fae987111b1664cac220a 100644 (file)
@@ -31,7 +31,7 @@ class PathIsNoDirectoryException extends FrameworkException {
         */
        public function __construct ($path, $code) {
                // Add a message around the missing class
         */
        public function __construct ($path, $code) {
                // Add a message around the missing class
-               $message = sprintf("Der angegebene Pfad <span class=\"exception_reason\">%s</span> ist ung&uuml;tig (kein Pfad).", $path);
+               $message = sprintf("Der angegebene Pfad %s ist ung&uuml;tig (kein Pfad).", $path);
 
                // Call parent constructor
                parent::__construct($message, $code);
 
                // Call parent constructor
                parent::__construct($message, $code);
index a316701d703320dcdb95a86df1c12809600b493f..c9afc048a958c75febc55c5a186d41614840bbd7 100644 (file)
@@ -31,7 +31,7 @@ class PathReadProtectedException extends FrameworkException {
         */
        public function __construct ($path, $code) {
                // Add a message around the missing class
         */
        public function __construct ($path, $code) {
                // Add a message around the missing class
-               $message = sprintf("Der Pfad <span class=\"exception_reason\">%s</span> ist lese-gesch&uuml;tzt. Bitte Zugriffsrechte (CHMOD) zum Lesen setzen.", $path);
+               $message = sprintf("Der Pfad %s ist lese-gesch&uuml;tzt. Bitte Zugriffsrechte (CHMOD) zum Lesen setzen.", $path);
 
                // Call parent constructor
                parent::__construct($message, $code);
 
                // Call parent constructor
                parent::__construct($message, $code);
index 6b70a18583ba569842ac166a52bf51e8dc2ee620..988d20c8ac4097e6b051492c526eb55308750c5d 100644 (file)
@@ -31,7 +31,7 @@ class InvalidLanguagePathStringException extends FrameworkException {
         */
        public function __construct (array $classArray, $code) {
                // Add a message around the missing class
         */
        public function __construct (array $classArray, $code) {
                // Add a message around the missing class
-               $message = sprintf("[%s:%d] <span class=\"exception_reason\">%s</span> is not a string with path!",
+               $message = sprintf("[%s:%d] %s is not a string with path!",
                        $classArray[0]->__toString(),
                        $this->getLine(),
                        $classArray[1]
                        $classArray[0]->__toString(),
                        $this->getLine(),
                        $classArray[1]
index 4e369b3f892d94cb833b08389facc268cfe98144..1a3b2f644a5838f1d86b08010a8b79baa7474b99 100644 (file)
@@ -31,7 +31,7 @@ class LanguagePathIsNoDirectoryException extends FrameworkException {
         */
        public function __construct (array $classArray, $code) {
                // Add a message around the missing class
         */
        public function __construct (array $classArray, $code) {
                // Add a message around the missing class
-               $message = sprintf("[%s:%d] Der Sprach-Basispfad <span class=\"exception_reason\">%s</span> existiert nicht oder ist eine Datei!",
+               $message = sprintf("[%s:%d] Language base path %s does not exist or is not a directory.",
                        $classArray[0]->__toString(),
                        $this->getLine(),
                        $classArray[1]
                        $classArray[0]->__toString(),
                        $this->getLine(),
                        $classArray[1]
index 25340f230026cd2ad0f0a6416e2935002a64e659..888cb7d97bbce559546398b5dae933df3afe28d8 100644 (file)
@@ -31,7 +31,7 @@ class LanguagePathReadProtectedException extends FrameworkException {
         */
        public function __construct (array $classArray, $code) {
                // Add a message around the missing class
         */
        public function __construct (array $classArray, $code) {
                // Add a message around the missing class
-               $message = sprintf("[%s:%d] Base language path <span class=\"exception_reason\">%s</span> is read-protected. Please change access rights (CHMOD).",
+               $message = sprintf("[%s:%d] Base language path %s is read-protected. Please change access rights (CHMOD).",
                        $classArray[0]->__toString(),
                        $this->getLine(),
                        $classArray[1]
                        $classArray[0]->__toString(),
                        $this->getLine(),
                        $classArray[1]
index 4a9e6bd0ea87dcec4067f620e117aa06a2fe89d4..7d6e9c6b8fa6fcdd5972c7c4b48977e097bbdd34 100644 (file)
@@ -31,7 +31,7 @@ class ClassMismatchException extends FrameworkException {
         */
        public function __construct (array $classArray, $code) {
                // Add a message around the missing class
         */
        public function __construct (array $classArray, $code) {
                // Add a message around the missing class
-               $message = sprintf("The class <span class=\"exception_reason\">%s</span> does not match class <span class=\"exception_reason\">%s</span>.",
+               $message = sprintf("The class %s does not match class %s.",
                        $classArray[0],
                        $classArray[1]
                );
                        $classArray[0],
                        $classArray[1]
                );
index 9644eb9b92c6c42ab8c366ea09416345bc319a13..25833a866c411113bb43a08cd079cddbebf55546 100644 (file)
@@ -38,7 +38,7 @@ class DimNotFoundInArrayException extends FrameworkException {
                        );
                } else {
                        // No class given
                        );
                } else {
                        // No class given
-                       $message = sprintf("Please provide a class for <span class=\"exception_reason\">%s</span>", __CLASS__);
+                       $message = sprintf("Please provide a class for %s", __CLASS__);
                }
 
                // Call parent constructor
                }
 
                // Call parent constructor
index 70913288655514e2638f45963bd8b62645318004..7d35e4ac8d8646bc09e2ca8602de15dfd78dae80 100644 (file)
@@ -31,7 +31,7 @@ class EmptyVariableException extends FrameworkException {
         */
        public function __construct (array $msgArray, $code) {
                // Add a message around the missing class
         */
        public function __construct (array $msgArray, $code) {
                // Add a message around the missing class
-               $message = sprintf("[%s:%d] Variable <span class=\"exception_reason\">%s</span> is not set.",
+               $message = sprintf("[%s:%d] Variable %s is not set.",
                        $msgArray[0]->__toString(),
                        $this->getLine(),
                        $msgArray[1]
                        $msgArray[0]->__toString(),
                        $this->getLine(),
                        $msgArray[1]
index 68da6e568b1011a0ee544b72c00546ac0b0f8c47..5e0fb53146c123462a3fdcb88264144f27ce6a8a 100644 (file)
@@ -31,7 +31,7 @@ class IndexOutOfBoundsException extends FrameworkException {
         */
        public function __construct ($message, $code) {
                // Add a message around the missing class
         */
        public function __construct ($message, $code) {
                // Add a message around the missing class
-               $message = sprintf("<span class=\"exception_reason\">%s</span> is out of bounds.",
+               $message = sprintf("%s is out of bounds.",
                        $message
                );
 
                        $message
                );
 
index 0b4d253560ed8f04caeb862827909a789bf24002..d3697a7b650b93281fa48787d4070f82ebda84b9 100644 (file)
@@ -31,7 +31,7 @@ class InvalidArrayCountException extends FrameworkException {
         */
        public function __construct (array $array, $code) {
                // Add a message around the missing class
         */
        public function __construct (array $array, $code) {
                // Add a message around the missing class
-               $message = sprintf("[%s:%d] <span class=\"exception_reason\">%s</span> hat <u>%d</u> Elemente, soll aber <u>%d</u> enthalten!",
+               $message = sprintf("[%s:%d] %s has %d elements, expected arre %d.",
                        $array[0]->__toString(),
                        $this->getLine(),
                        $array[1],
                        $array[0]->__toString(),
                        $this->getLine(),
                        $array[1],
index b6a40292200f801919f2276aba6b1f8a8b170e1e..8b1aa4517d9a63b7800cfc39a6b570947299d4b9 100644 (file)
@@ -31,7 +31,7 @@ class InvalidCommandInstanceException extends FrameworkException {
         */
        public function __construct (array $msgArray, $code) {
                // Add a message around the missing class
         */
        public function __construct (array $msgArray, $code) {
                // Add a message around the missing class
-               $message = sprintf("[%s:%d] Invalid command <span class=\"exception_reason\">%s</span> detected.",
+               $message = sprintf("[%s:%d] Invalid command %s detected.",
                        $msgArray[0]->__toString(),
                        $this->getLine(),
                        $msgArray[1]
                        $msgArray[0]->__toString(),
                        $this->getLine(),
                        $msgArray[1]
index 57182befdbe819bcdeb89f2c131165b99004fc61..c2a63282b57155d4794db44c0bf8c810d5a30fe7 100644 (file)
@@ -31,7 +31,7 @@ class InvalidInterfaceException extends FrameworkException {
         */
        public function __construct (array $classArray, $code) {
                // Add a message around the missing class
         */
        public function __construct (array $classArray, $code) {
                // Add a message around the missing class
-               $message = sprintf("[%s:%d] Object does not implement expected interface <span class=\"exception_reason\">%s</span>.",
+               $message = sprintf("[%s:%d] Object does not implement expected interface %s.",
                        $classArray[0]->__toString(),
                        $this->getLine(),
                        $classArray[1]
                        $classArray[0]->__toString(),
                        $this->getLine(),
                        $classArray[1]
index 918737b10a4ab8d0ba8acdf9e55863ead35db19d..634ac13d3ca9698dbc7dbdc65a4d69dcc3db6945 100644 (file)
@@ -41,7 +41,7 @@ class MissingArrayElementsException extends FrameworkException {
                }
 
                // Add a message around the missing class
                }
 
                // Add a message around the missing class
-               $message = sprintf("[%s:%d] Array <u>%s()</u> Does not have these elements: <span class=\"exception_reason\">%s</span>",
+               $message = sprintf("[%s:%d] Array <u>%s()</u> Does not have these elements: %s",
                        $classArray[0]->__toString(),
                        $this->getLine(),
                        $classArray[1],
                        $classArray[0]->__toString(),
                        $this->getLine(),
                        $classArray[1],
index 9738527a99043fb051c63834ec8b41c484771bec..fcb791b2827456f8c7f92faeb1ec8d6897763090 100644 (file)
@@ -31,7 +31,7 @@ class NoClassException extends FrameworkException {
         */
        public function __construct (array $msgArray, $code) {
                // Add a message around the missing class
         */
        public function __construct (array $msgArray, $code) {
                // Add a message around the missing class
-               $message = sprintf("[%s:%d] Internal class <span class=\"exception_reason\">%s</span> not found.",
+               $message = sprintf("[%s:%d] Class %s not found.",
                        $msgArray[0]->__toString(),
                        $this->getLine(),
                        $msgArray[1]
                        $msgArray[0]->__toString(),
                        $this->getLine(),
                        $msgArray[1]
index f4f34357e9ea49a0251bc2a0529795e18536c6a1..16e2b95649a2c6c4bdea4c608c29535b3c491e9c 100644 (file)
@@ -32,7 +32,7 @@ class NoConfigEntryException extends FrameworkException {
         */
        public function __construct (array $classArray, $code) {
                // Add a message around the missing class
         */
        public function __construct (array $classArray, $code) {
                // Add a message around the missing class
-               $message = sprintf("[%s:%d] Configuration entry <span class=\"exception_reason\">%s</span> not found.",
+               $message = sprintf("[%s:%d] Configuration entry %s not found.",
                        $classArray[0],
                        $this->getLine(),
                        $classArray[1]
                        $classArray[0],
                        $this->getLine(),
                        $classArray[1]
index beb6cc64093ffe8cade43aed11d24aced7930de3..9ebf5cdc69db9c2f62ab72c72067b85f648c34df 100644 (file)
@@ -31,7 +31,7 @@ class VariableIsNotSetException extends FrameworkException {
         */
        public function __construct (array $array, $code) {
                // Add a message around the missing class
         */
        public function __construct (array $array, $code) {
                // Add a message around the missing class
-               $message = sprintf("[%s:%d] Bei der Initialisierung der Applikation <span class=\"exception_reason\">%s</span> wurde keine Variable <span class=\"exception_reason\">%s</span> erzeugt.",
+               $message = sprintf("[%s:%d] Bei der Initialisierung der Applikation %s wurde keine Variable %s erzeugt.",
                        $array[0]->__toString(),
                        $this->getLine(),
                        $array[1],
                        $array[0]->__toString(),
                        $this->getLine(),
                        $array[1],
index db34dbb4e420c13e45cd33b5ffa053019c4c6552..5c3d3374dad8a6792b7a99433081d8e545f350c8 100644 (file)
@@ -31,7 +31,7 @@ class InvalidDatabaseResultException extends FrameworkException {
         */
        public function __construct (array $msgArray, $code) {
                // Construct the message
         */
        public function __construct (array $msgArray, $code) {
                // Construct the message
-               $message = sprintf("[%s:%d] Database instance <span class=\"exception_reason\">%s</span> contains invalid entries.",
+               $message = sprintf("[%s:%d] Database instance %s contains invalid entries.",
                        $msgArray[0]->__toString(),
                        $this->getLine(),
                        $msgArray[1]->__toString()
                        $msgArray[0]->__toString(),
                        $this->getLine(),
                        $msgArray[1]->__toString()
index 7ebcf280941e253ebf26db53bd107e3f67bbe8f2..664b98c9d45b26411f627fe10f27249e33012ec1 100644 (file)
@@ -31,7 +31,7 @@ class InvalidStateInstanceException extends FrameworkException {
         */
        public function __construct (array $msgArray, $code) {
                // Add a message around the missing class
         */
        public function __construct (array $msgArray, $code) {
                // Add a message around the missing class
-               $message = sprintf("[%s:%d] Invalid state <span class=\"exception_reason\">%s</span> of type <span class=\"exception_reason\">%s</span> detected.",
+               $message = sprintf("[%s:%d] Invalid state %s of type %s detected.",
                        $msgArray[0]->__toString(),
                        $this->getLine(),
                        $msgArray[1],
                        $msgArray[0]->__toString(),
                        $this->getLine(),
                        $msgArray[1],
index afa32018ea70d6dc6bd54776eeedff58dc9acc8d..3664cf4aee977b5e4937cd3ddf33c08cb477aa5a 100644 (file)
@@ -31,7 +31,7 @@ class BasePathIsNoDirectoryException extends FrameworkException {
         */
        public function __construct (array $classArray, $code) {
                // Add a message around the missing class
         */
        public function __construct (array $classArray, $code) {
                // Add a message around the missing class
-               $message = sprintf("[%s:%d] Der Template-Basispfad <span class=\"exception_reason\">%s</span> existiert nicht oder ist eine Datei!",
+               $message = sprintf("[%s:%d] Der Template-Basispfad %s existiert nicht oder ist eine Datei!",
                        $classArray[0]->__toString(),
                        $this->getLine(),
                        $classArray[1]
                        $classArray[0]->__toString(),
                        $this->getLine(),
                        $classArray[1]
index b7948e4f6c1c00dadb68f2d548fb09e7b96364f9..b12e8d730c08ec79987e4a80749294c23e48449d 100644 (file)
@@ -31,7 +31,7 @@ class BasePathReadProtectedException extends FrameworkException {
         */
        public function __construct (array $classArray, $code) {
                // Add a message around the missing class
         */
        public function __construct (array $classArray, $code) {
                // Add a message around the missing class
-               $message = sprintf("[%s:%d] Der Template-Basispfad <span class=\"exception_reason\">%s</span> ist lesegesch&uuml;tzt! Bitte Zugriffsrechte (CHMOD) &auml;ndern.",
+               $message = sprintf("[%s:%d] Der Template-Basispfad %s ist lesegesch&uuml;tzt! Bitte Zugriffsrechte (CHMOD) &auml;ndern.",
                        $classArray[0]->__toString(),
                        $this->getLine(),
                        $classArray[1]
                        $classArray[0]->__toString(),
                        $this->getLine(),
                        $classArray[1]
index a505d57caff5d17eb97d39a17f8669b047a7eac9..383e67a586c819641b8b3d196921748c3ed73530 100644 (file)
@@ -31,7 +31,7 @@ class InvalidBasePathStringException extends FrameworkException {
         */
        public function __construct (array $classArray, $code) {
                // Add a message around the missing class
         */
        public function __construct (array $classArray, $code) {
                // Add a message around the missing class
-               $message = sprintf("[%s:%d] <span class=\"exception_reason\">%s</span> is not a string with a base path!",
+               $message = sprintf("[%s:%d] %s is not a string with a base path!",
                        $classArray[0]->__toString(),
                        $this->getLine(),
                        $classArray[1]
                        $classArray[0]->__toString(),
                        $this->getLine(),
                        $classArray[1]
index 129cad4bb98f2f84f7ef76712a6d397d16c48bae..20f6a59dde195a697d2e954a665229f03e45a2fe 100644 (file)
@@ -31,7 +31,7 @@ class UnexpectedTemplateTypeException extends FrameworkException {
         */
        public function __construct (array $msgArray, $code) {
                // Add a message around the missing class
         */
        public function __construct (array $msgArray, $code) {
                // Add a message around the missing class
-               $message = sprintf("[%s:%d] Der Template-Typ <span class=\"exception_reason\">%s</span> entspricht nicht dem erwartetem Template-Typ <span class=\"exception_reason\">%s</span>.",
+               $message = sprintf("[%s:%d] Der Template-Typ %s entspricht nicht dem erwartetem Template-Typ %s.",
                        $msgArray[0]->__toString(),
                        $this->getLine(),
                        $msgArray[1],
                        $msgArray[0]->__toString(),
                        $this->getLine(),
                        $msgArray[1],
index 02229e7df78117db89351d02a41d113cc552405b..55ec8c5f306447a330908f38720d93717428176e 100644 (file)
@@ -31,7 +31,7 @@ class UserEmailMissingException extends FrameworkException {
         */
        public function __construct (array $msgArray, $code = 0) {
                // Create the message
         */
        public function __construct (array $msgArray, $code = 0) {
                // Create the message
-               $message = sprintf("[%s:%d] User email <span class=\"exception_reason\">%s</span> was not found.",
+               $message = sprintf("[%s:%d] User email %s was not found.",
                        $msgArray[0]->__toString(),
                        $this->getLine(),
                        $msgArray[1]
                        $msgArray[0]->__toString(),
                        $this->getLine(),
                        $msgArray[1]
index bf0f1f4bcfe2b0219fc6a1ff0d2aea4993063476..cd97d8202059ca197d28a5cee2d7aa053c12cd4c 100644 (file)
@@ -31,7 +31,7 @@ class UserPasswordMismatchException extends FrameworkException {
         */
        public function __construct (array $msgArray, $code = 0) {
                // Create the message
         */
        public function __construct (array $msgArray, $code = 0) {
                // Create the message
-               $message = sprintf("[%s:%d] Supplied password for user <span class=\"exception_reason\">%s</span> did not match with stored password.",
+               $message = sprintf("[%s:%d] Supplied password for user %s did not match with stored password.",
                        $msgArray[0]->__toString(),
                        $this->getLine(),
                        $msgArray[1]->getUserName()
                        $msgArray[0]->__toString(),
                        $this->getLine(),
                        $msgArray[1]->getUserName()
index 20e4022e2e72ad5ccc83437ad0b8a48579fe2915..42c5f33c6a741bef73aed5feed73468f4e42b292 100644 (file)
@@ -31,7 +31,7 @@ class UsernameMissingException extends FrameworkException {
         */
        public function __construct (array $msgArray, $code = 0) {
                // Create the message
         */
        public function __construct (array $msgArray, $code = 0) {
                // Create the message
-               $message = sprintf("[%s:%d] Username <span class=\"exception_reason\">%s</span> was not found.",
+               $message = sprintf("[%s:%d] Username %s was not found.",
                        $msgArray[0]->__toString(),
                        $this->getLine(),
                        $msgArray[1]
                        $msgArray[0]->__toString(),
                        $this->getLine(),
                        $msgArray[1]