Exceptions now with not so much underlines
authorRoland Häder <roland@mxchange.org>
Fri, 20 Jun 2008 21:47:43 +0000 (21:47 +0000)
committerRoland Häder <roland@mxchange.org>
Fri, 20 Jun 2008 21:47:43 +0000 (21:47 +0000)
61 files changed:
application/ship-simu/exceptions/class_BirthdayInvalidException.php
application/ship-simu/exceptions/class_ContractAllreadySignedException.php
application/ship-simu/exceptions/class_ContractPartnerMismatchException.php
application/ship-simu/exceptions/class_InvalidContractPartnerException.php
application/ship-simu/exceptions/class_ItemNotInPriceListException.php
application/ship-simu/exceptions/class_ItemNotTradeableException.php
application/ship-simu/exceptions/class_MissingSimulatorIDException.php
application/ship-simu/exceptions/class_NoShipyardsConstructedException.php
application/ship-simu/exceptions/class_ShipPartNotConstructableException.php
application/ship-simu/exceptions/class_StructuresOutOfBoundsException.php
application/ship-simu/exceptions/class_UnsupportedLimitationPartException.php
application/ship-simu/exceptions/class_WrongGenderSpecifiedException.php
inc/classes/exceptions/actions/class_InvalidActionException.php
inc/classes/exceptions/auth/class_UserAuthorizationException.php
inc/classes/exceptions/compressor/class_MismatchingCompressorsException.php
inc/classes/exceptions/controller/class_InvalidControllerException.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/database/wrapper/class_WrapperUserNameNotFoundException.php
inc/classes/exceptions/helper/class_FormClosedException.php
inc/classes/exceptions/helper/class_FormGroupClosedException.php
inc/classes/exceptions/helper/class_UserInstanceMissingException.php
inc/classes/exceptions/io/class_DirPointerNotOpenedException.php
inc/classes/exceptions/io/class_FileIsMissingException.php
inc/classes/exceptions/io/class_FilePointerNotOpenedException.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_ClassNotFoundException.php
inc/classes/exceptions/main/class_ConfigEntryNotFoundException.php
inc/classes/exceptions/main/class_DimNotFoundInArrayException.php
inc/classes/exceptions/main/class_EmptyVariableException.php
inc/classes/exceptions/main/class_ExceptionNotFoundException.php
inc/classes/exceptions/main/class_GetterNotFoundException.php
inc/classes/exceptions/main/class_InvalidArrayCountException.php
inc/classes/exceptions/main/class_InvalidCommandException.php
inc/classes/exceptions/main/class_InvalidCommandInstanceException.php
inc/classes/exceptions/main/class_InvalidControllerException.php
inc/classes/exceptions/main/class_InvalidObjectException.php
inc/classes/exceptions/main/class_MissingArrayElementsException.php
inc/classes/exceptions/main/class_NoArrayCreatedException.php
inc/classes/exceptions/main/class_NoArrayException.php
inc/classes/exceptions/main/class_NoObjectException.php
inc/classes/exceptions/main/class_VariableIsNotSetException.php
inc/classes/exceptions/result/class_InvalidDatabaseResultException.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/template/class_ViewHelperNotFoundException.php
inc/classes/exceptions/user/class_UserEmailMissingException.php
inc/classes/exceptions/user/class_UserPasswordMismatchException.php
inc/classes/exceptions/user/class_UsernameMissingException.php

index d2e94a186828537fd16a6d75719c789a120e3561..f8279179b9c9cda16c4fea40cd2abed648a6eada 100644 (file)
@@ -24,7 +24,7 @@
 class BirthdayInvalidException extends FrameworkException {
        public function __construct (array $birthArray, $code) {
                // Add a message around the missing class
-               $message = sprintf("Das Geburtsdatum <u>%s</u> ist leider falsch.",
+               $message = sprintf("Das Geburtsdatum <span id=\"exception_reason\">%s</span> ist leider falsch.",
                        date("d.m.Y", mktime(
                                0, 0, 0,
                                $birthArray[1],
index 49699d53bddea594307c0dbd471ae8f080504db3..76890e9444f1c51e6b25326944a5ac315acf140d 100644 (file)
@@ -27,7 +27,7 @@ class ContractAllreadySignedException extends FrameworkException {
                $classArray = (array) $classArray;
 
                // Add a message around the missing class
-               $message = sprintf("[%s:] Die Vertragsparteien <u>%s</u> und <u>%s</u> haben den Vertrag bereits unterzeichnet!",
+               $message = sprintf("[%s:] Die Vertragsparteien <span id=\"exception_reason\">%s</span> und <span id=\"exception_reason\">%s</span> haben den Vertrag bereits unterzeichnet!",
                        $classArray[0]->__toString(),
                        $classArray[1]->getCompanyName(),
                        $classArray[2]->getCompanyName()
index 3412676b6ff0b8ae8f5c0483b9d0505f63a5bdff..c2ff17fea9e3740c4336bb814be7f9839bf68113 100644 (file)
@@ -24,7 +24,7 @@
 class ContractPartnerMismatchException extends FrameworkException {
        public function __construct (array $classArray, $code) {
                // Add a message around the missing class
-               $message = sprintf("[%s:] Der Vertragspartner von <u>%s</u> ist ung&uuml;tig (<u>%s</u>) und darf diesen Vertrag nicht unterzeichnen!",
+               $message = sprintf("[%s:] Der Vertragspartner von <span id=\"exception_reason\">%s</span> ist ung&uuml;tig (<span id=\"exception_reason\">%s</span>) und darf diesen Vertrag nicht unterzeichnen!",
                        $classArray[0]->__toString(),
                        $classArray[1]->getCompanyName(),
                        $classArray[2]->getCompanyName()
index 6f9c6b52a08431de017ed15000af050c335a035f..af8f472cce7afe0e694692b8ebb5864dfc91fbd9 100644 (file)
@@ -24,7 +24,7 @@
 class InvalidContractPartnerException extends FrameworkException {
        public function __construct (BaseFrameworkSystem $class, $code) {
                // Add a message around the missing class
-               $message = sprintf("[%s:] <u>%s</u> ist kein g&uuml;tiger Vertragspartner.",
+               $message = sprintf("[%s:] <span id=\"exception_reason\">%s</span> ist kein g&uuml;tiger Vertragspartner.",
                        $class->__toString(),
                        $class->getObjectDescription()
                );
index dcd2590b23b1d6fa99bc3befad0c99ae672e3940..ecadfa7f81b0ec91eec1484198e2fd7e66f652a0 100644 (file)
@@ -24,7 +24,7 @@
 class ItemNotInPriceListException extends FrameworkException {
        public function __construct (BaseFrameworkSystem $class, $code) {
                // Add a message around the missing class
-               $message = sprintf("[Merchant:] Preis f&uuml;r den Artikel <u>%s</u> <em><u>%s</u></em> nicht gefunden.",
+               $message = sprintf("[Merchant:] Preis f&uuml;r den Artikel <span id=\"exception_reason\">%s</span> <em><span id=\"exception_reason\">%s</span></em> nicht gefunden.",
                        $class->__toString(),
                        $class->getObjectDescription()
                );
index 8500577c27059a2e19bd67c3cbe2e530f667d405..ea6a2dc9cacdf7a2cdbb12f2253f4ba5b44f5a14 100644 (file)
@@ -24,7 +24,7 @@
 class ItemNotTradeableException extends FrameworkException {
        public function __construct (array $classArray, $code) {
                // Add a message around the missing class
-               $message = sprintf("[%s:] <u>%s</u> ist nicht handelbar!",
+               $message = sprintf("[%s:] <span id=\"exception_reason\">%s</span> ist nicht handelbar!",
                        $classArray[0]->__toString(),
                        $classArray[1]->getObjectDescription()
                );
index a124734a2e9cccbc0054c66d1b335d0196d908a1..228b95c265674a46d6da237bfb69ab631bd70bc2 100644 (file)
@@ -24,7 +24,7 @@
 class MissingSimulatorIDException extends FrameworkException {
        public function __construct (array $classArray, $code) {
                // Add a message around the missing class
-               $message = sprintf("[%s:] Die Simulator-ID <u>%s</u> scheint ung&uuml;ltig zu sein.",
+               $message = sprintf("[%s:] Die Simulator-ID <span id=\"exception_reason\">%s</span> scheint ung&uuml;ltig zu sein.",
                        $classArray[0]->__toString(),
                        $classArray[1]
                );
index 29e4f8f754064bd5d0125f23afaf904d2c92f826..4ef7d2e14380c5c432ce47a7221baf26cc30c889 100644 (file)
@@ -30,7 +30,7 @@ class NoShipyardsConstructedException extends FrameworkException {
                        );
                } else {
                        // No class given
-                       $message = sprintf("Please provide a class for <u>%s</u>", __CLASS__);
+                       $message = sprintf("Please provide a class for <span id=\"exception_reason\">%s</span>", __CLASS__);
                }
 
                // Call parent constructor
index e7032a2bab2dcb2694bf2575163cc300561a5a23..8ab399361d030821b2f09d8fcb695cd83b93d97c 100644 (file)
@@ -24,7 +24,7 @@
 class ShipPartNotConstructableException extends FrameworkException {
        public function __construct (array $partArray, $code) {
                // Add a message around the missing class
-               $message = sprintf("Schiffteil <u>%s</u> ist nicht constrierbar!",
+               $message = sprintf("Schiffteil <span id=\"exception_reason\">%s</span> ist nicht constrierbar!",
                        $partArray[0]
                );
 
index 6acd54d1a5c010526528dd72d48db77ea253171b..14e5bead0cc5160a3039a30c6e106bce25b03439 100644 (file)
@@ -24,7 +24,7 @@
 class StructuresOutOfBoundsException extends FrameworkException {
        public function __construct ($idx, $code) {
                // Add a message around the missing class
-               $message = sprintf("Der Index <u>%s</u> liegt ausserhalb des g&uuml;tigen Bereiches! Schiffsteil nicht auffindbar.", $idx);
+               $message = sprintf("Der Index <span id=\"exception_reason\">%s</span> liegt ausserhalb des g&uuml;tigen Bereiches! Schiffsteil nicht auffindbar.", $idx);
 
                // Call parent constructor
                parent::__construct($message, $code);
index 444051ffbdc2ba6738998cd8a496d5a306afed32..6d850dd82c38de9019b692d977ce2506e44f757f 100644 (file)
@@ -24,7 +24,7 @@
 class UnsupportedLimitationPartException extends FrameworkException {
        public function __construct ($str, $code) {
                // Add a message around the missing class
-               $message = sprintf("Limitierungsinformation <u>%s</u> wird derzeit nicht unterst&uuml;tzt.", $str);
+               $message = sprintf("Limitierungsinformation <span id=\"exception_reason\">%s</span> wird derzeit nicht unterst&uuml;tzt.", $str);
 
                // Call parent constructor
                parent::__construct($message, $code);
index 983e9d5abc5ee932ef6380d1b59961b2cd7c7919..ab546163fd0bdcfc5ea6283b2162950e33a014fd 100644 (file)
@@ -24,7 +24,7 @@
 class WrongGenderSpecifiedException extends FrameworkException {
        public function __construct ($gender, $code) {
                // Add a message around the missing class
-               $message = sprintf("Das Geschlecht <u>%s</u> Ist nicht <em>M</em> (M&auml;nnlich) oder <em>F</em> (Weiblich).", $gender);
+               $message = sprintf("Das Geschlecht <span id=\"exception_reason\">%s</span> Ist nicht <em>M</em> (M&auml;nnlich) oder <em>F</em> (Weiblich).", $gender);
 
                // Call parent constructor
                parent::__construct($message, $code);
index 4aa1b96acb92f04f4bbf090e42313a7b082e6cb4..d48571cbfd14edbb3815c67e3910aa390a6c4ff6 100644 (file)
@@ -31,7 +31,7 @@ class InvalidActionException extends FrameworkException {
         */
        public function __construct(array $msgArray, $code) {
                // Prepare the message
-               $message = sprintf("[%s:%d] Cannot resolve action <u>%s</u>.",
+               $message = sprintf("[%s:%d] Cannot resolve action <span id=\"exception_reason\">%s</span>.",
                        $msgArray[0]->__toString(),
                        $this->getLine(),
                        $msgArray[1]
index 5fedd40f32c48c2adf764e313eabf97e23caa29d..a491f7a44990ab6f0e5d87b232dc8438b8c0324d 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * 
+ * An exception thrown when authorization of the user has failed
  *
  * @author             Roland Haeder <webmaster@ship-simu.org>
  * @version            0.0.0
@@ -31,7 +31,7 @@ class UserAuthorizationException extends FrameworkException {
         */
        public function __construct(Filterable $filterInstance, $code) {
                // Construct the message
-               $message = sprintf("[%s:%d] Authorization has failed. Error code <u>%s</u>",
+               $message = sprintf("[%s:%d] Authorization has failed. Error code <span id=\"exception_reason\">%s</span>",
                        $filterInstance->__toString(),
                        $this->getLine(),
                        $this->getHexCode($code)
index 97c95adc7de15460834de35457ec24a39836a230..ab70d2f8053d155f022f9946b28bf6ba061a2d84 100644 (file)
@@ -31,7 +31,7 @@ class MismatchingCompressorsException extends FrameworkException {
         */
        public function __construct (array $array, $code) {
                // Add a message around the missing class
-               $message = sprintf("[%s:%d] Der Kompressor <u>%s</u> zu den geladenen Daten aus <u>%s</u> und der aktuell verwendete Kompressor <u>%s</u> stimmen nicht &uuml;berein!",
+               $message = sprintf("[%s:%d] Der Kompressor <span id=\"exception_reason\">%s</span> zu den geladenen Daten aus <span id=\"exception_reason\">%s</span> und der aktuell verwendete Kompressor <span id=\"exception_reason\">%s</span> stimmen nicht &uuml;berein!",
                        $array[0]->__toString(),
                        $this->getLine(),
                        strtoupper($array[1]),
index f2216962f59ab4b3676ee79bf582e15aafba5147..4aa54c8e07bdf6266e3695a17ded61e547a36ee0 100644 (file)
@@ -31,7 +31,7 @@ class InvalidControllerException extends FrameworkException {
         */
        public function __construct(array $msgArray, $code) {
                // Prepare the message
-               $message = sprintf("[%s:%d] Cannot resolve controller <u>%s</u>.",
+               $message = sprintf("[%s:%d] Cannot resolve controller <span id=\"exception_reason\">%s</span>.",
                        $msgArray[0]->__toString(),
                        $this->getLine(),
                        $msgArray[1]
index f7dddab54481d691495a61399fd3ed5cb1ec8f1c..2fbad56884ed8f59a9a366fce31f83d4fc0842fe 100644 (file)
@@ -31,7 +31,7 @@ class SqlException extends DatabaseException {
         */
        public function __construct (array $msgArray, $code) {
                // Construct the message
-               $message = sprintf("[%s:%d] SQL error detected. Message from database: <u>%s</u>, code: <u>%s</u>.",
+               $message = sprintf("[%s:%d] SQL error detected. Message from database: <span id=\"exception_reason\">%s</span>, code: <span id=\"exception_reason\">%s</span>.",
                        $msgArray[0]->__toString(),
                        $this->getLine(),
                        $msgArray[1],
index a3be62a189227c7e8e31e590c648a68fa128b612..4701a95c8d14facffacd95b9f11463030a2cbd77 100644 (file)
@@ -31,7 +31,7 @@ class SavePathIsNoDirectoryException extends DatabaseException {
         */
        public function __construct ($path, $code) {
                // Add a message around the missing class
-               $message = sprintf("Der angegebene Speicherpfad <u>%s</u> ist ung&uuml;tig (kein Pfad).", $path);
+               $message = sprintf("Der angegebene Speicherpfad <span id=\"exception_reason\">%s</span> ist ung&uuml;tig (kein Pfad).", $path);
 
                // Call parent constructor
                parent::__construct($message, $code);
index 06ef4b4cd1affbc0dc20ffeaf16dd330ac0fa75f..ce574d1bb14aef3b4a26d30a1a102cbd2065668d 100644 (file)
@@ -31,7 +31,7 @@ class SavePathReadProtectedException extends DatabaseException {
         */
        public function __construct ($path, $code) {
                // Add a message around the missing class
-               $message = sprintf("Der Pfad <u>%s</u> ist lese-gesch&uuml;tzt. Bitte Zugriffsrechte (CHMOD) zum Lesen setzen.", $path);
+               $message = sprintf("Der Pfad <span id=\"exception_reason\">%s</span> ist lese-gesch&uuml;tzt. Bitte Zugriffsrechte (CHMOD) zum Lesen setzen.", $path);
 
                // Call parent constructor
                parent::__construct($message, $code);
index a5c57f482a5c4a966233b263c7102800f6843627..f587f49786a9f825c221800f89427cc0fdaebfd6 100644 (file)
@@ -31,7 +31,7 @@ class SavePathWriteProtectedException extends DatabaseException {
         */
        public function __construct ($path, $code) {
                // Add a message around the missing class
-               $message = sprintf("Der angegebene Speicherpfad <u>%s</u> ist schreibgesch&uuml;tzt. Bitte Zugriffsrechte (CHMOD) entsprechend setzen.", $path);
+               $message = sprintf("Der angegebene Speicherpfad <span id=\"exception_reason\">%s</span> ist schreibgesch&uuml;tzt. Bitte Zugriffsrechte (CHMOD) entsprechend setzen.", $path);
 
                // Call parent constructor
                parent::__construct($message, $code);
index c6014b123cc3b6040c5a3180bc5990d4826b1d84..1e701fc3f2cd73c6fd454e074ecbf053238268de 100644 (file)
@@ -31,7 +31,7 @@ class WrapperUserNameNotFoundException extends DatabaseException {
         */
        public function __construct (array $msgArray, $code) {
                // Add a message around the missing class
-               $message = sprintf("[%s:%d] Username <u>%s</u> was not found. Requesting class: <u>%s</u>",
+               $message = sprintf("[%s:%d] Username <span id=\"exception_reason\">%s</span> was not found. Requesting class: <span id=\"exception_reason\">%s</span>",
                        $msgArray[0]->__toString(),
                        $this->getLine(),
                        $msgArray[1]->getUserName(),
index dd012eb045c7afa92af642c9cafbb5d80540409c..45c89d4b8be262eceb5127be53374577e7e72ba0 100644 (file)
@@ -32,7 +32,7 @@ class FormClosedException extends FrameworkException {
         */
        public function __construct (array $classArray, $code) {
                // Add a message around the missing class
-               $message = sprintf("[%s:%d] Could not add form element <u>%s</u> because form is closed.",
+               $message = sprintf("[%s:%d] Could not add form element <span id=\"exception_reason\">%s</span> because form is closed.",
                        $classArray[0]->__toString(),
                        $this->getLine(),
                        $classArray[1]
index 8c56a5d2ecb457d5cedc43d61dccfd2ddfeb2e31..d4c88aac68245dd3fb24ebb9d8a88cf2135c326e 100644 (file)
@@ -31,7 +31,7 @@ class FormGroupClosedException extends FrameworkException {
         */
        public function __construct (array $classArray, $code) {
                // Add a message around the missing class
-               $message = sprintf("[%s:%d] Could not add sub group <u>%s</u> because no form group has been opened before.",
+               $message = sprintf("[%s:%d] Could not add sub group <span id=\"exception_reason\">%s</span> because no form group has been opened before.",
                        $classArray[0]->__toString(),
                        $this->getLine(),
                        $classArray[1]
index a1095720993705642d7a34d7465e1b93575e5391..ea13f46ad7d71bdb95518a08ce2ddf4744883ee4 100644 (file)
@@ -31,7 +31,7 @@ class UserInstanceMissingException extends FrameworkException {
         */
        public function __construct (array $classArray, $code) {
                // Add a message around the missing class
-               $message = sprintf("[%s:%d] Registry key <u>%s</u> does not include a class with implemented interface <u>ManageableUser</u>.",
+               $message = sprintf("[%s:%d] Registry key <span id=\"exception_reason\">%s</span> does not include a class with implemented interface <u>ManageableUser</u>.",
                        $classArray[0]->__toString(),
                        $this->getLine(),
                        $classArray[1]
index 12b4d2668ae2ed95dd51242d70eb7f5f673a85a9..207eb3c014f02024d7e0dfea003cd3d2c0cade3f 100644 (file)
@@ -31,7 +31,7 @@ class DirPointerNotOpenedException extends FrameworkException {
         */
        public function __construct ($path, $code) {
                // Add a message around the missing class
-               $message = sprintf("F&uuml;r den Pfad <u>%s</u> konnte kein Pointer initialisiert werden.", $path);
+               $message = sprintf("F&uuml;r den Pfad <span id=\"exception_reason\">%s</span> konnte kein Pointer initialisiert werden.", $path);
 
                // Call parent constructor
                parent::__construct($message, $code);
index a319a71ce918874c8ba58b412afac300203aa7dc..61fa308984fed8db53273865d0d8d4cf0d8a7223 100644 (file)
@@ -31,7 +31,7 @@ class FileIsMissingException extends FrameworkException {
         */
        public function __construct ($fqfn, $code) {
                // Add a message around the missing class
-               $message = sprintf("The requested file <u>%s</u> is missing.", $fqfn);
+               $message = sprintf("The requested file <span id=\"exception_reason\">%s</span> is missing.", $fqfn);
 
                // Call parent constructor
                parent::__construct($message, $code);
index 760fca2f96402393e161fbff3e53c0c28be2eb3a..05e9ea2d40727780b667fb79df807b55f88bd9ed 100644 (file)
@@ -31,7 +31,7 @@ class FilePointerNotOpenedException extends FrameworkException {
         */
        public function __construct ($fqfn, $code) {
                // Add a message around the missing class
-               $message = sprintf("Not able to initialize a pointer for the file <u>%s</u>. Maybe the file is missing.", $fqfn);
+               $message = sprintf("Not able to initialize a pointer for the file <span id=\"exception_reason\">%s</span>. Maybe the file is missing.", $fqfn);
 
                // Call parent constructor
                parent::__construct($message, $code);
index c061380ca02971785f3a278c134166aa12e3c2b3..cfe3e2cb93df0d9af3c5ebbcab0cc8a333023fd9 100644 (file)
@@ -31,7 +31,7 @@ class FileReadProtectedException extends FrameworkException {
         */
        public function __construct ($fileName, $code) {
                // Add a message around the missing class
-               $message = sprintf("File <u>%s</u> is read-protected. Please set read access rights (CHMOD).", $fileName);
+               $message = sprintf("File <span id=\"exception_reason\">%s</span> is read-protected. Please set read access rights (CHMOD).", $fileName);
 
                // Call parent constructor
                parent::__construct($message, $code);
index 90d4ae086ef4d807cafbfc88194c50d7149349b0..477a773f2e31c002dbbd9da43d70d18e0487089c 100644 (file)
@@ -31,7 +31,7 @@ class InvalidDataLengthException extends FrameworkException {
         */
        public function __construct (array $array, $code) {
                // Add a message around the missing class
-               $message = sprintf("[%s:%d] Eine unerwartete Datenl&auml;nge von <u>%s</u> Byte ist aufgetreten. <u>%s</u> wurden erwartet!",
+               $message = sprintf("[%s:%d] Eine unerwartete Datenl&auml;nge von <span id=\"exception_reason\">%s</span> Byte ist aufgetreten. <span id=\"exception_reason\">%s</span> wurden erwartet!",
                        $array[0]->__toString(),
                        $this->getLine(),
                        $array[1],
index d15fbfec73535865e25a316e5001ef9229b77922..6196143dd2b8f4423c01a25974146365198c810c 100644 (file)
@@ -31,7 +31,7 @@ class InvalidMD5ChecksumException extends FrameworkException {
         */
        public function __construct (array $array, $code) {
                // Add a message around the missing class
-               $message = sprintf("[%s:%d] Die MD5-Pr&uuml;fsummen <u>%s</u> und <u>%s</u> stimmen nicht &uuml;berein!",
+               $message = sprintf("[%s:%d] Die MD5-Pr&uuml;fsummen <span id=\"exception_reason\">%s</span> und <span id=\"exception_reason\">%s</span> stimmen nicht &uuml;berein!",
                        $array[0]->__toString(),
                        $this->getLine(),
                        $array[1],
index 2cedc57b14a60f38a8a4f6b46155838a05887288..f6108934d633130f958f7cb4766b8a9e093666ca 100644 (file)
@@ -31,7 +31,7 @@ class PathIsNoDirectoryException extends FrameworkException {
         */
        public function __construct ($path, $code) {
                // Add a message around the missing class
-               $message = sprintf("Der angegebene Pfad <u>%s</u> ist ung&uuml;tig (kein Pfad).", $path);
+               $message = sprintf("Der angegebene Pfad <span id=\"exception_reason\">%s</span> ist ung&uuml;tig (kein Pfad).", $path);
 
                // Call parent constructor
                parent::__construct($message, $code);
index 102dae24afc088e39c2106dfdf5e07a7cdad358f..ce576381f1940c17a6a44069e0774cd19cdf0af4 100644 (file)
@@ -31,7 +31,7 @@ class PathReadProtectedException extends FrameworkException {
         */
        public function __construct ($path, $code) {
                // Add a message around the missing class
-               $message = sprintf("Der Pfad <u>%s</u> ist lese-gesch&uuml;tzt. Bitte Zugriffsrechte (CHMOD) zum Lesen setzen.", $path);
+               $message = sprintf("Der Pfad <span id=\"exception_reason\">%s</span> ist lese-gesch&uuml;tzt. Bitte Zugriffsrechte (CHMOD) zum Lesen setzen.", $path);
 
                // Call parent constructor
                parent::__construct($message, $code);
index 6e02cfe4941379e500a27d84d3fdce7e9004a732..3775bc4b89b311c068f321a25a980f765e36034f 100644 (file)
@@ -31,7 +31,7 @@ class InvalidLanguagePathStringException extends FrameworkException {
         */
        public function __construct (BaseFrameworkSystem $class, $code) {
                // Add a message around the missing class
-               $message = sprintf("[%s:%d] <u>%s</u> ist keine Zeichenkette!",
+               $message = sprintf("[%s:%d] <span id=\"exception_reason\">%s</span> ist keine Zeichenkette!",
                        $class[0]->__toString(),
                        $this->getLine(),
                        $class[1]
index 9b6b581de5026fe8f59229b85da095bd4978faef..f735d59bc9b20cd805775385a70e399355844403 100644 (file)
@@ -31,7 +31,7 @@ class LanguagePathIsNoDirectoryException extends FrameworkException {
         */
        public function __construct (BaseFrameworkSystem $class, $code) {
                // Add a message around the missing class
-               $message = sprintf("[%s:%d] Der Sprach-Basispfad <u>%s</u> existiert nicht oder ist eine Datei!",
+               $message = sprintf("[%s:%d] Der Sprach-Basispfad <span id=\"exception_reason\">%s</span> existiert nicht oder ist eine Datei!",
                        $class[0]->__toString(),
                        $this->getLine(),
                        $class[1]
index 9df443e778eae076adb85ad2ed2b160a65a5468a..b67c7977a75c5ad2876e4d353dd89a43f5744de2 100644 (file)
@@ -31,7 +31,7 @@ class LanguagePathReadProtectedException extends FrameworkException {
         */
        public function __construct (BaseFrameworkSystem $class, $code) {
                // Add a message around the missing class
-               $message = sprintf("[%s:%d] Der Sprach-Basispfad <u>%s</u> ist lesegesch&uuml;tzt! Bitte Zugriffsrechte (CHMOD) &auml;ndern.",
+               $message = sprintf("[%s:%d] Der Sprach-Basispfad <span id=\"exception_reason\">%s</span> ist lesegesch&uuml;tzt! Bitte Zugriffsrechte (CHMOD) &auml;ndern.",
                        $class[0]->__toString(),
                        $this->getLine(),
                        $class[1]
index 92364cd3b1d6007c43e6a072b6d46e522e9a8014..a2f009b13253d7958c9448a74f6b493ad7a3c559 100644 (file)
@@ -31,7 +31,7 @@ class ClassMismatchException extends FrameworkException {
         */
        public function __construct (array $classArray, $code) {
                // Add a message around the missing class
-               $message = sprintf("Die Klasse <u>%s</u> ist ungleich <u>%s</u>.",
+               $message = sprintf("Die Klasse <span id=\"exception_reason\">%s</span> ist ungleich <span id=\"exception_reason\">%s</span>.",
                        $classArray[0],
                        $classArray[1]
                );
index 5f037fe4353d93233b31b19afc441bf3f423510a..3c9511c6bccf4f9cb064a7cd314e3b7b55a11901 100644 (file)
@@ -31,7 +31,7 @@ class ClassNotFoundException extends FrameworkException {
         */
        public function __construct (array $msgArray, $code) {
                // Add a message around the missing class
-               $message = sprintf("[%s:%d] Internal class <u>%s</u> not found.",
+               $message = sprintf("[%s:%d] Internal class <span id=\"exception_reason\">%s</span> not found.",
                        $msgArray[0]->__toString(),
                        $this->getLine(),
                        $msgArray[1]
index 651e8e030007b89c7f35a8f1572bd2e4f45e2850..88a34617f9d6800a6bd711290f515a573c4a0d1c 100644 (file)
@@ -34,7 +34,7 @@ class ConfigEntryNotFoundException extends FrameworkException {
                $classArray = (array) $classArray;
 
                // Add a message around the missing class
-               $message = sprintf("[%s:%d] Configuration entry <u>%s</u> not found.",
+               $message = sprintf("[%s:%d] Configuration entry <span id=\"exception_reason\">%s</span> not found.",
                        $classArray[0],
                        $this->getLine(),
                        $classArray[1]
index 25a694c37ed3c7c70545f02069b68ecdbc87894c..7205bfcb4d244541ed983241d9d456bf5614cef5 100644 (file)
@@ -38,7 +38,7 @@ class DimNotFoundInArrayException extends FrameworkException {
                        );
                } else {
                        // No class given
-                       $message = sprintf("Please provide a class for <u>%s</u>", __CLASS__);
+                       $message = sprintf("Please provide a class for <span id=\"exception_reason\">%s</span>", __CLASS__);
                }
 
                // Call parent constructor
index 7fa7f48e3ac6af16cd98cbf329e578af8966c49f..aaedc4567162bbfed83782acf6407321ce725165 100644 (file)
@@ -31,7 +31,7 @@ class EmptyVariableException extends FrameworkException {
         */
        public function __construct (array $msgArray, $code) {
                // Add a message around the missing class
-               $message = sprintf("[%s:%d] Variable <u>%s</u> is not set.",
+               $message = sprintf("[%s:%d] Variable <span id=\"exception_reason\">%s</span> is not set.",
                        $msgArray[0]->__toString(),
                        $this->getLine(),
                        $msgArray[1]
index eed88505a3e491eeb764530a3ff493d1e134a1af..a52370029dcd0ad744c9710c36a4e1e1d5e6b4f6 100644 (file)
@@ -34,7 +34,7 @@ class ExceptionNotFoundException extends FrameworkException {
                $classArray = (array) $classArray;
 
                // Add a message around the missing class
-               $message = sprintf("[%s:%d] Exception <u>%s</u> nicht gefunden.",
+               $message = sprintf("[%s:%d] Exception <span id=\"exception_reason\">%s</span> nicht gefunden.",
                        $classArray[0],
                        $this->getLine(),
                        $classArray[1]
index bcc958f558d540ab2db8f2db546e1e4d5fa3f356..6cad1240b5818ec33b4cfbf96860446109339256 100644 (file)
@@ -34,7 +34,7 @@ class GetterNotFoundException extends FrameworkException {
                $dataArray = (array) $dataArray;
 
                // Add a message around the missing class
-               $message = sprintf("[%s:%d] Getter-Methode f&uuml;r Attribut <u>%s</u> nicht gefunden.",
+               $message = sprintf("[%s:%d] Getter-Methode f&uuml;r Attribut <span id=\"exception_reason\">%s</span> nicht gefunden.",
                        $dataArray[0]->__toString(),
                        $this->getLine(),
                        $dataArray[1]
index 0fc6f6685f9ca1d1a73727f8a4f0fc95a6a8c552..3839899e980e9d93b0fcd45fa6a130e4dbf43771 100644 (file)
@@ -31,7 +31,7 @@ class InvalidArrayCountException extends FrameworkException {
         */
        public function __construct (array $array, $code) {
                // Add a message around the missing class
-               $message = sprintf("[%s:%d] <u>%s</u> hat <u>%d</u> Elemente, soll aber <u>%d</u> enthalten!",
+               $message = sprintf("[%s:%d] <span id=\"exception_reason\">%s</span> hat <u>%d</u> Elemente, soll aber <u>%d</u> enthalten!",
                        $array[0]->__toString(),
                        $this->getLine(),
                        $array[1],
index d8ec33da0c5b19a09e9c2cc63a6e7f855d512eef..1d53b72c2f7fcb6c4a7eda9a3dad461c5e2593e6 100644 (file)
@@ -31,7 +31,7 @@ class InvalidCommandException extends FrameworkException {
         */
        public function __construct (array $msgArray, $code) {
                // Add a message around the missing class
-               $message = sprintf("[%s:%d] Invalid command <u>%s</u> detected.",
+               $message = sprintf("[%s:%d] Invalid command <span id=\"exception_reason\">%s</span> detected.",
                        $msgArray[0]->__toString(),
                        $this->getLine(),
                        $msgArray[1]
index 77285264438eba5fcfeedeb980c99347f80e12b4..9ea665f82f3a22ebc737cad8f3cee278b75ce000 100644 (file)
@@ -31,7 +31,7 @@ class InvalidCommandInstanceException extends FrameworkException {
         */
        public function __construct (array $msgArray, $code) {
                // Add a message around the missing class
-               $message = sprintf("[%s:%d] Invalid command <u>%s</u> detected.",
+               $message = sprintf("[%s:%d] Invalid command <span id=\"exception_reason\">%s</span> detected.",
                        $msgArray[0]->__toString(),
                        $this->getLine(),
                        $msgArray[1]
index a3043d7eafecd1b35b72c49e3ccaa52a058c8f22..2249f507d2ca8589bf293f2870c14a619dff0798 100644 (file)
@@ -31,7 +31,7 @@ class InvalidControllerInstanceException extends FrameworkException {
         */
        public function __construct (array $msgArray, $code) {
                // Add a message around the missing class
-               $message = sprintf("[%s:%d] Invalid controller <u>%s</u> detected.",
+               $message = sprintf("[%s:%d] Invalid controller <span id=\"exception_reason\">%s</span> detected.",
                        $msgArray[0]->__toString(),
                        $this->getLine(),
                        $msgArray[1]
index 1b4438b0c901741d19d7c4a7e9ebcad3a62920b7..9d643a01a97abde7950597a3b48572286293bce6 100644 (file)
@@ -31,7 +31,7 @@ class InvalidObjectException extends FrameworkException {
         */
        public function __construct (BaseFrameworkSystem $class, $code) {
                // Add a message around the missing class
-               $message = sprintf("[%s:%d] Objekte sind nicht erlaubt. (Objekt: <u>%s</u>)",
+               $message = sprintf("[%s:%d] Objekte sind nicht erlaubt. (Objekt: <span id=\"exception_reason\">%s</span>)",
                        $class->__toString(),
                        $this->getLine(),
                        $class->getObjectDescription()
index 890aa2d2c6e7c5ae229dfca330fba2b85cb89e67..1c9306085181b643220b38c155ce46578462996a 100644 (file)
@@ -44,7 +44,7 @@ class MissingArrayElementsException extends FrameworkException {
                }
 
                // Add a message around the missing class
-               $message = sprintf("[%s:%d] Das Array <u>%s()</u> keine Elemente <u>%s</u> auf!",
+               $message = sprintf("[%s:%d] Das Array <u>%s()</u> keine Elemente <span id=\"exception_reason\">%s</span> auf!",
                        $classArray[0]->__toString(),
                        $this->getLine(),
                        $classArray[1],
index 264d69d549b598343f9e5279c7ab71ee85a64226..31db41244f8758173b83b7fabb8919e7227eeeae 100644 (file)
@@ -31,7 +31,7 @@ class NoArrayCreatedException extends FrameworkException {
         */
        public function __construct (array $array, $code) {
                // Add a message around the missing class
-               $message = sprintf("[%s:%d] <u>%s</u> ist kein erstelltes Objekt.",
+               $message = sprintf("[%s:%d] <span id=\"exception_reason\">%s</span> ist kein erstelltes Objekt.",
                        $array[0]->__toString(),
                        $this->getLine(),
                        $array[1]
index 00f240ea7ba15bc623f28907f4e34abd92aa956a..e1bbf098278f110a05b7e22cb1d0f2ef84bc1a58 100644 (file)
@@ -29,7 +29,7 @@ class NoArrayException extends FrameworkException {
         */
        public function __construct ($string, $code) {
                // Add a message around the missing class
-               $message = sprintf("<u>%s</u> ist kein Array!",
+               $message = sprintf("<span id=\"exception_reason\">%s</span> ist kein Array!",
                        $string
                );
 
index 1812a16fb656f09fb8cf1d3463bc690c34da8f22..3efe4f9fadf998f89e650a656210e50d9019c40b 100644 (file)
@@ -33,7 +33,7 @@ class NoObjectException extends FrameworkException {
         */
        public function __construct ($string, $code) {
                // Add a message around the missing class
-               $message = sprintf("<u>%s</u> ist kein Objekt!",
+               $message = sprintf("<span id=\"exception_reason\">%s</span> ist kein Objekt!",
                        $string
                );
 
index 36372e574c436af7031ee35ea6a8127debe65ea3..8f6f8e30891105e0b33e54566e1f1c079fffe157 100644 (file)
@@ -31,7 +31,7 @@ class VariableIsNotSetException extends FrameworkException {
         */
        public function __construct (array $array, $code) {
                // Add a message around the missing class
-               $message = sprintf("[%s:%d] Bei der Initialisierung der Applikation <u>%s</u> wurde keine Variable <u>%s</u> erzeugt.",
+               $message = sprintf("[%s:%d] Bei der Initialisierung der Applikation <span id=\"exception_reason\">%s</span> wurde keine Variable <span id=\"exception_reason\">%s</span> erzeugt.",
                        $array[0]->__toString(),
                        $this->getLine(),
                        $array[1],
index bd104598f08603fdef971964ee1e6d416cb4a46e..8b563b3d3a9d9beeb389f5dc158c044298c88f82 100644 (file)
@@ -31,7 +31,7 @@ class InvalidDatabaseResultException extends FrameworkException {
         */
        public function __construct(array $msgArray, $code) {
                // Construct the message
-               $message = sprintf("[%s:%d] Database instance <u>%s</u> contains invalid entries.",
+               $message = sprintf("[%s:%d] Database instance <span id=\"exception_reason\">%s</span> contains invalid entries.",
                        $msgArray[0]->__toString(),
                        $this->getLine(),
                        $msgArray[1]->__toString()
index ab6b7f058ff1785479c8c89dd247572f673a89c7..f286d2bde4d2ccd407d85652be80148eea5dba4f 100644 (file)
@@ -31,7 +31,7 @@ class BasePathIsNoDirectoryException extends FrameworkException {
         */
        public function __construct (BaseFrameworkSystem $class, $code) {
                // Add a message around the missing class
-               $message = sprintf("[%s:%d] Der Template-Basispfad <u>%s</u> existiert nicht oder ist eine Datei!",
+               $message = sprintf("[%s:%d] Der Template-Basispfad <span id=\"exception_reason\">%s</span> existiert nicht oder ist eine Datei!",
                        $class[0]->__toString(),
                        $this->getLine(),
                        $class[1]
index 3d1507a3e234ef60a9aabd028a1df899cd517854..f5105b43ddfdbf09653111ee413205218c32b297 100644 (file)
@@ -31,7 +31,7 @@ class BasePathReadProtectedException extends FrameworkException {
         */
        public function __construct (BaseFrameworkSystem $class, $code) {
                // Add a message around the missing class
-               $message = sprintf("[%s:%d] Der Template-Basispfad <u>%s</u> ist lesegesch&uuml;tzt! Bitte Zugriffsrechte (CHMOD) &auml;ndern.",
+               $message = sprintf("[%s:%d] Der Template-Basispfad <span id=\"exception_reason\">%s</span> ist lesegesch&uuml;tzt! Bitte Zugriffsrechte (CHMOD) &auml;ndern.",
                        $class[0]->__toString(),
                        $this->getLine(),
                        $class[1]
index 9aa3ad4bba4c9b4daa11320c2d5cdaf22bb7b272..9a2dbcf532c50b207f32dca908b6583fc3950ded 100644 (file)
@@ -31,7 +31,7 @@ class InvalidBasePathStringException extends FrameworkException {
         */
        public function __construct (BaseFrameworkSystem $class, $code) {
                // Add a message around the missing class
-               $message = sprintf("[%s:%d] <u>%s</u> ist keine Zeichenkette!",
+               $message = sprintf("[%s:%d] <span id=\"exception_reason\">%s</span> ist keine Zeichenkette!",
                        $class[0]->__toString(),
                        $this->getLine(),
                        $class[1]
index c761da6afbdb286c7648f503e6e05c31c7d4431a..03edc1f4bcc90ec67f1d80dcc5f2ad11b72728c4 100644 (file)
@@ -31,7 +31,7 @@ class UnexpectedTemplateTypeException extends FrameworkException {
         */
        public function __construct (array $msgArray, $code) {
                // Add a message around the missing class
-               $message = sprintf("[%s:%d] Der Template-Typ <u>%s</u> entspricht nicht dem erwartetem Template-Typ <u>%s</u>.",
+               $message = sprintf("[%s:%d] Der Template-Typ <span id=\"exception_reason\">%s</span> entspricht nicht dem erwartetem Template-Typ <span id=\"exception_reason\">%s</span>.",
                        $msgArray[0]->__toString(),
                        $this->getLine(),
                        $msgArray[1],
index 0fe1d02965602c1cf49c85f3560f6343b281eff1..422f984b5f43e28a3f4b94f9cfd38c5d3205c6a5 100644 (file)
@@ -31,7 +31,7 @@ class ViewHelperNotFoundException extends FrameworkException {
         */
        public function __construct (array $msgArray, $code) {
                // Add a message around the missing class
-               $message = sprintf("[%s:] View-Helper <u>%s</u> ist ung&uuml;ltig.",
+               $message = sprintf("[%s:] View-Helper <span id=\"exception_reason\">%s</span> ist ung&uuml;ltig.",
                        $msgArray[0]->__toString(),
                        $msgArray[1]
                );
index 3c816e96fe4fa9e5a6b4dd4526ec60b5ae7ea867..55a094038c5105f85cc443710240b1cb2a265046 100644 (file)
@@ -31,7 +31,7 @@ class UserEmailMissingException extends FrameworkException {
         */
        public function __construct(array $msgArray, $code = 0) {
                // Create the message
-               $message = sprintf("[%s:%d] User email <u>%s</u> was not found.",
+               $message = sprintf("[%s:%d] User email <span id=\"exception_reason\">%s</span> was not found.",
                        $msgArray[0]->__toString(),
                        $this->getLine(),
                        $msgArray[1]
index 2ca954d6f0a44d2076c69d82c106119e9c532b19..fa6522a8d9f0e012ffa9cd6cc4bda113e5bd2f41 100644 (file)
@@ -31,7 +31,7 @@ class UserPasswordMismatchException extends FrameworkException {
         */
        public function __construct(array $msgArray, $code = 0) {
                // Create the message
-               $message = sprintf("[%s:%d] Supplied password for user <u>%s</u> did not match with stored password.",
+               $message = sprintf("[%s:%d] Supplied password for user <span id=\"exception_reason\">%s</span> did not match with stored password.",
                        $msgArray[0]->__toString(),
                        $this->getLine(),
                        $msgArray[1]->getUserName()
index 42160ede8200b25384131a7e772969319a79ffd9..59ef9c885aed5e0ace4ca25bbb2ea42edaea02c4 100644 (file)
@@ -31,7 +31,7 @@ class UsernameMissingException extends FrameworkException {
         */
        public function __construct(array $msgArray, $code = 0) {
                // Create the message
-               $message = sprintf("[%s:%d] Username <u>%s</u> was not found.",
+               $message = sprintf("[%s:%d] Username <span id=\"exception_reason\">%s</span> was not found.",
                        $msgArray[0]->__toString(),
                        $this->getLine(),
                        $msgArray[1]