*/
public function __construct (array $msgArray, $code) {
// Prepare the message
- $message = sprintf("[%s:%d] Cannot resolve action <span class=\"exception_reason\">%s (%s)</span>.",
+ $message = sprintf('[%s:%d] Cannot resolve action <span class="exception_reason">%s (%s)</span>.',
$msgArray[0]->__toString(),
$this->getLine(),
$msgArray[1],
*/
public function __construct (Filterable $filterInstance, $code) {
// Construct the message
- $message = sprintf("[%s:%d] Authorization has failed. Error code %s",
+ $message = sprintf('[%s:%d] Authorization has failed. Error code %s',
$filterInstance->__toString(),
$this->getLine(),
$this->getHexCode($code)
*/
public function __construct (array $messageArray, $code) {
// Construct message
- $message = sprintf("[%s:%d] Raw data %s contains invalid characters for BASE64-encoding.",
+ $message = sprintf('[%s:%d] Raw data %s contains invalid characters for BASE64-encoding.',
$messageArray[0]->__toString(),
$this->getLine(),
$messageArray[1]
*/
public function __construct (array $messageArray, $code) {
// Construct message
- $message = sprintf("[%s:%d] Data length %s modulo 4 is not zero.",
+ $message = sprintf('[%s:%d] Data length %s modulo 4 is not zero.',
$messageArray[0]->__toString(),
$this->getLine(),
strlen($messageArray[1])
*/
public function __construct (array $array, $code) {
// Add a message around the missing class
- $message = sprintf("[%s:%d] Der Kompressor %s zu den geladenen Daten aus %s und der aktuell verwendete Kompressor %s stimmen nicht überein!",
+ $message = sprintf('[%s:%d] Der Kompressor %s zu den geladenen Daten aus %s und der aktuell verwendete Kompressor %s stimmen nicht überein!',
$array[0]->__toString(),
$this->getLine(),
strtoupper($array[1]),
- sprintf("%s:%s",
+ sprintf('%s:%s',
basename(dirname($array[2])),
basename($array[2])
),
*/
public function __construct (array $messageData, $code) {
// Construct the message
- $message = sprintf("[%s:] Connection with socket %s is already registered.",
+ $message = sprintf('[%s:] Connection with socket %s is already registered.',
$messageData[0]->__toString(),
$messageData[1]
);
*/
public function __construct (ControllerResolver $resolverInstance, $code) {
// Prepare the message
- $message = sprintf("[%s:%d] Cannot resolve default controller <span class=\"exception_reason\">(%s)</span>. Maybe missing?",
+ $message = sprintf('[%s:%d] Cannot resolve default controller <span class="exception_reason">(%s)</span>. Maybe missing?',
$resolverInstance->__toString(),
$this->getLine(),
$resolverInstance->getClassName()
*/
public function __construct (array $msgArray, $code) {
// Prepare the message
- $message = sprintf("[%s:%d] Cannot resolve controller <span class=\"exception_reason\">%s (class name: %s)</span>.",
+ $message = sprintf('[%s:%d] Cannot resolve controller <span class="exception_reason">%s (class name: %s)</span>.',
$msgArray[0]->__toString(),
$this->getLine(),
$msgArray[1],
$length = $filterInstance->getConfigInstance()->getConfigEntry('captcha_string_length');
// Construct message
- $message = sprintf("[%s:%d] Encrypt string has an invalid length. Valid: %d",
+ $message = sprintf('[%s:%d] Encrypt string has an invalid length. Valid: %d',
$filterInstance->__toString(),
$this->getLine(),
$length
*/
public function __construct (Filterable $filterInstance, $code) {
// Construct message
- $message = sprintf("[%s:%d] Encrypt string is missing.",
+ $message = sprintf('[%s:%d] Encrypt string is missing.',
$filterInstance->__toString(),
$this->getLine()
);
*/
public function __construct (array $msgArray, $code) {
// Construct the message
- $message = sprintf("[%s:%d] SQL error detected. Message from database: %s, code: %s.",
+ $message = sprintf('[%s:%d] SQL error detected. Message from database: %s, code: %s.',
$msgArray[0]->__toString(),
$this->getLine(),
$msgArray[1],
*/
public function __construct (FrameworkInterface $class, $code) {
// Add a message around the missing class
- $message = sprintf("[%s:%d] Save path is empty.",
+ $message = sprintf('[%s:%d] Save path is empty.',
$class->__toString(),
$this->getLine()
);
*/
public function __construct ($path, $code) {
// Add a message around the missing class
- $message = sprintf("Save path %s is no directory.", $path);
+ $message = sprintf('Save path %s is no directory.', $path);
// Call parent constructor
parent::__construct($message, $code);
*/
public function __construct ($path, $code) {
// Add a message around the missing class
- $message = sprintf("Path %s is not readable. Please fix your file access rights.", $path);
+ $message = sprintf('Path %s is not readable. Please fix your file access rights.', $path);
// Call parent constructor
parent::__construct($message, $code);
*/
public function __construct ($path, $code) {
// Add a message around the missing class
- $message = sprintf("Save path %s is write-protected. Please fix your file permissions.", $path);
+ $message = sprintf('Save path %s is write-protected. Please fix your file permissions.', $path);
// Call parent constructor
parent::__construct($message, $code);
*/
public function __construct (Filterable $filterInstance, $code) {
// Construct the message
- $message = sprintf("[%s:%d] Filter chain interruppted by fatal error in filter.",
+ $message = sprintf('[%s:%d] Filter chain interruppted by fatal error in filter.',
$filterInstance->__toString(),
$this->getLine()
);
*/
public function __construct (array $filterArray, $code) {
// Construct the message
- $message = sprintf("[%s:%d] Filter chain %s is not initialized.",
+ $message = sprintf('[%s:%d] Filter chain %s is not initialized.',
$filterArray[0]->__toString(),
$this->getLine(),
$filterArray[1]
*/
public function __construct (array $classArray, $code) {
// Add a message around the missing class
- $message = sprintf("[%s:%d] Could not add form element %s 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]
*/
public function __construct (array $classArray, $code) {
// Add a message around the missing class
- $message = sprintf("[%s:%d] Could not add sub group %s 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]
*/
public function __construct (BaseHelper $helperInstance, $code) {
// Add a message around the missing class
- $message = sprintf("[%s:%d] Form is not yet closed. Close it with method <u>%s::addFormTag()</u> and add no parameters.",
+ $message = sprintf('[%s:%d] Form is not yet closed. Close it with method <u>%s::addFormTag()</u> and add no parameters.',
$helperInstance->__toString(),
$this->getLine(),
$helperInstance->__toString()
*/
public function __construct (array $msgArray, $code) {
// Add a message around the missing class
- $message = sprintf("[%s:%d] Group %s already opened before.",
+ $message = sprintf('[%s:%d] Group %s already opened before.',
$msgArray[0]->__toString(),
$this->getLine(),
$msgArray[1]
*/
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: %s",
+ $message = sprintf('[%s:%d] Sub group not opened before. Raw text follows: %s',
$msgArray[0]->__toString(),
$this->getLine(),
$msgArray[1]
*/
public function __construct (array $msgArray, $code) {
// Add a message around the missing class
- $message = sprintf("[%s:%d] Sub group %s already opened before.",
+ $message = sprintf('[%s:%d] Sub group %s already opened before.',
$msgArray[0]->__toString(),
$this->getLine(),
$msgArray[1]
*/
public function __construct (array $msgArray, $code) {
// Add a message around the missing class
- $message = sprintf("[%s:%d] Group not opened before. Raw text follows: %s",
+ $message = sprintf('[%s:%d] Group not opened before. Raw text follows: %s',
$msgArray[0]->__toString(),
$this->getLine(),
$msgArray[1]
*/
public function __construct (array $classArray, $code) {
// Add a message around the missing class
- $message = sprintf("[%s:%d] Registry key %s 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]
*/
public function __construct ($path, $code) {
// Add a message around the missing class
- $message = sprintf("Für den Pfad %s konnte kein Pointer initialisiert werden.", $path);
+ $message = sprintf('Für den Pfad %s konnte kein Pointer initialisiert werden.', $path);
// Call parent constructor
parent::__construct($message, $code);
*/
public function __construct ($fqfn, $code) {
// Add a message around the missing class
- $message = sprintf("A problem has been detected reading or writing to/from %s.", $fqfn);
+ $message = sprintf('A problem has been detected reading or writing to/from %s.', $fqfn);
// Call parent constructor
parent::__construct($message, $code);
*/
public function __construct ($fileName, $code) {
// Add a message around the missing class
- $message = sprintf("File %s 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);
*/
public function __construct (array $msgArray, $code) {
// Add a message around the missing class
- $message = sprintf("[%s:%d] Eine unerwartete Datenlänge von %s Byte ist aufgetreten. %s wurden erwartet!",
+ $message = sprintf('[%s:%d] Unexpected data length of %s bytes has been detected, %s bytes were expected.',
$msgArray[0]->__toString(),
$this->getLine(),
$msgArray[1],
*/
public function __construct (array $msgArray, $code) {
// Add a message around the missing class
- $message = sprintf("[%s:%d] Die MD5-Prüfsummen %s und %s stimmen nicht überein!",
+ $message = sprintf('[%s:%d] MD5 hashes %s and %s doesnt match.',
$msgArray[0]->__toString(),
$this->getLine(),
$msgArray[1],
*/
public function __construct (FrameworkInterface $class, $code) {
// Add a message around the missing class
- $message = sprintf("[%s:%d] Has an invalid resource.",
+ $message = sprintf('[%s:%d] Has an invalid resource.',
$class->__toString(),
$this->getLine()
);
*/
public function __construct (FrameworkInterface $class, $code) {
// Add a message around the missing class
- $message = sprintf("[%s:%d] Directory path is empty.",
+ $message = sprintf('[%s:%d] Directory path is empty.',
$class->__toString(),
$this->getLine()
);
*/
public function __construct ($path, $code) {
// Add a message around the missing class
- $message = sprintf("Der Pfad %s ist lese-geschützt. Bitte Zugriffsrechte (CHMOD) zum Lesen setzen.", $path);
+ $message = sprintf('The path %s appears to be read-protected. Please fix your CHMOD rights.', $path);
// Call parent constructor
parent::__construct($message, $code);
*/
public function __construct (array $classArray, $code) {
// Add a message around the missing class
- $message = sprintf("[%s:%d] %s is not a string with path!",
+ $message = sprintf('[%s:%d] %s is not a string with path.',
$classArray[0]->__toString(),
$this->getLine(),
$classArray[1]
*/
public function __construct (FrameworkInterface $class, $code) {
// Add a message around the missing class
- $message = sprintf("[%s:%d] Language base path is empty.",
+ $message = sprintf('[%s:%d] Language base path is empty.',
$class->__toString(),
$this->getLine()
);
*/
public function __construct (array $classArray, $code) {
// Add a message around the missing class
- $message = sprintf("[%s:%d] Language base path %s does not exist or is not a directory.",
+ $message = sprintf('[%s:%d] Language base path %s does not exist or is not a directory.',
$classArray[0]->__toString(),
$this->getLine(),
$classArray[1]
*/
public function __construct (array $classArray, $code) {
// Add a message around the missing class
- $message = sprintf("[%s:%d] Base language path %s 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]
*/
public function __construct (array $classArray, $code) {
// Add a message around the missing class
- $message = sprintf("The class %s does not match class %s.",
+ $message = sprintf('The class %s does not match class %s.',
$classArray[0],
$classArray[1]
);
*/
public function __construct (FrameworkConfiguration $class, $code) {
// Add a message around the missing class
- $message = sprintf("[%s:%d] Empty configuration entry provided!",
+ $message = sprintf('[%s:%d] Empty configuration entry provided.',
$class->__toString(),
$this->getLine()
);
public function __construct (FrameworkInterface $class, $code) {
if (is_object($class)) {
// Add a message around the missing class
- $message = sprintf("[%s:%d] Dimensions not found in array, array is invalid!",
+ $message = sprintf('[%s:%d] Dimensions not found in array, array is invalid!',
$class->__toString(),
$this->getLine()
);
} else {
// No class given
- $message = sprintf("Please provide a class for %s", __CLASS__);
+ $message = sprintf('Please provide a class for %s', __CLASS__);
}
// Call parent constructor
*/
public function __construct (array $msgArray, $code) {
// Add a message around the missing class
- $message = sprintf("[%s:%d] Variable %s is not set.",
+ $message = sprintf('[%s:%d] Variable %s is not set.',
$msgArray[0]->__toString(),
$this->getLine(),
$msgArray[1]
*/
public function __construct ($message, $code) {
// Add a message around the missing class
- $message = sprintf("%s is out of bounds.",
+ $message = sprintf('%s is out of bounds.',
$message
);
*/
public function __construct (array $array, $code) {
// Add a message around the missing class
- $message = sprintf("[%s:%d] %s has %d elements, expected arre %d.",
+ $message = sprintf('[%s:%d] %s has %d elements, expected arre %d.',
$array[0]->__toString(),
$this->getLine(),
$array[1],
*/
public function __construct (array $msgArray, $code) {
// Add a message around the missing class
- $message = sprintf("[%s:%d] Invalid command <span class=\"exception_reason\">%s (class %s)</span> detected.",
+ $message = sprintf('[%s:%d] Invalid command <span class="exception_reason">%s (class %s)</span> detected.',
$msgArray[0]->__toString(),
$this->getLine(),
$msgArray[1],
*/
public function __construct (array $msgArray, $code) {
// Add a message around the missing class
- $message = sprintf("[%s:%d] Invalid command %s detected.",
+ $message = sprintf('[%s:%d] Invalid command %s detected.',
$msgArray[0]->__toString(),
$this->getLine(),
$msgArray[1]
*/
public function __construct (array $classArray, $code) {
// Add a message around the missing class
- $message = sprintf("[%s:%d] Object does not implement expected interface %s.",
+ $message = sprintf('[%s:%d] Object does not implement expected interface %s.',
$classArray[0]->__toString(),
$this->getLine(),
$classArray[1]
*/
public function __construct (FrameworkInterface $class, $code) {
// Add a message around the missing class
- $message = sprintf("[%s:%d] Object is not allowed here.",
+ $message = sprintf('[%s:%d] Object is not allowed here.',
$class->__toString(),
$this->getLine()
);
}
// Add a message around the missing class
- $message = sprintf("[%s:%d] Array <u>%s()</u> Does not have these elements: %s",
+ $message = sprintf('[%s:%d] Array <u>%s()</u> Does not have these elements: %s',
$classArray[0]->__toString(),
$this->getLine(),
$classArray[1],
*/
public function __construct ($instance, $code) {
// Add a message around the missing class
- $message = sprintf("[%s:%d] Die Dezimal- und Tausendertrenner fehlen!",
+ $message = sprintf('[%s:%d] Decimal and thousand seperators are missing.',
$instance->__toString(),
$this->getLine()
);
*/
public function __construct (array $classArray, $code) {
// Add a message around the missing class
- $message = sprintf("[%s:%d] This class has no method <u>%s()</u>!",
+ $message = sprintf('[%s:%d] This class has no method <u>%s()</u>.',
$classArray[0]->__toString(),
$this->getLine(),
$classArray[1]
*/
public function __construct (array $msgArray, $code) {
// Add a message around the missing class
- $message = sprintf("[%s:%d] Class %s not found.",
+ $message = sprintf('[%s:%d] Class %s not found.',
$msgArray[0]->__toString(),
$this->getLine(),
$msgArray[1]
*/
public function __construct (array $classArray, $code) {
// Add a message around the missing class
- $message = sprintf("[%s:%d] Configuration entry %s not found.",
+ $message = sprintf('[%s:%d] Configuration entry %s not found.',
$classArray[0],
$this->getLine(),
$classArray[1]
*/
public function __construct (FrameworkInterface $class, $code) {
// Add a message around the missing class
- $message = sprintf("[%s:%d] An object instance is set to <em>null</em>.",
+ $message = sprintf('[%s:%d] An object instance is set to <em>null</em>.',
$class->__toString(),
$this->getLine()
);
*/
public function __construct (FrameworkInterface $class, $code) {
// Add a message around the missing class
- $message = sprintf("[%s:%d] Headers are already sent!",
+ $message = sprintf('[%s:%d] Headers are already sent.',
$class->__toString(),
$this->getLine()
);
} // END - if
// Add a message around the missing class
- $message = sprintf("[%s:%d] Method <u>%s()</u> is unsupported or should not be called. extraInstance=%s",
+ $message = sprintf('[%s:%d] Method <u>%s()</u> is unsupported or should not be called. extraInstance=%s',
$classArray[0]->__toString(),
$this->getLine(),
$classArray[1],
*/
public function __construct (array $array, $code) {
// Add a message around the missing class
- $message = sprintf("[%s:%d] Bei der Initialisierung der Applikation %s wurde keine Variable %s erzeugt.",
+ $message = sprintf('[%s:%d] While the application %s was initialized, a variable %s was not created.',
$array[0]->__toString(),
$this->getLine(),
$array[1],
*/
public function __construct (array $msgArray, $code) {
// Construct the message
- $message = sprintf("[%s:%d] Database instance %s contains invalid entries.",
+ $message = sprintf('[%s:%d] Database instance %s contains invalid entries.',
$msgArray[0]->__toString(),
$this->getLine(),
$msgArray[1]->__toString()
*/
public function __construct (UpdateableResult $resultInstance, $code) {
// Construct the message
- $message = sprintf("[%s:%d] Update of result instance has nothing changed.",
+ $message = sprintf('[%s:%d] Update of result instance has nothing changed.',
$resultInstance->__toString(),
$this->getLine()
);
*/
public function __construct (array $messageData, $code) {
// Construct the message
- $message = sprintf("[%s:] Socket resource %s is not a server socket!",
+ $message = sprintf('[%s:] Socket resource %s is not a server socket.',
$messageData[0]->__toString(),
$messageData[1]
);
$lastError = socket_last_error($messageData[1]);
// Construct the message
- $message = sprintf("[%s:] Invalid socket, type=%s, errno=%s, errstr=%s",
+ $message = sprintf('[%s:] Invalid socket, type=%s, errno=%s, errstr=%s',
$messageData[0]->__toString(),
gettype($messageData[1]),
$lastError,
);
} else {
// Construct the message
- $message = sprintf("[%s:] Invalid socket, type=%s(%s), errno=%s, errstr=%s",
+ $message = sprintf('[%s:] Invalid socket, type=%s(%s), errno=%s, errstr=%s',
$messageData[0]->__toString(),
$messageData[1],
gettype($messageData[1]),
*/
public function __construct (array $messageData, $code) {
// Construct the message
- $message = sprintf("[%s:] Socket %s has no error reported.",
+ $message = sprintf('[%s:] Socket %s has no error reported.',
$messageData[0]->__toString(),
$messageData[1]
);
*/
public function __construct (ProtocolHandler $protocolInstance, $code) {
// Construct the message
- $message = sprintf("[%s:] Requested socket is not yet registered.",
+ $message = sprintf('[%s:] Requested socket is not yet registered.',
$protocolInstance->__toString()
);
*/
public function __construct (array $messageData, $code) {
// Construct the message
- $message = sprintf("[%s:] Socket %s is already registered.",
+ $message = sprintf('[%s:] Socket %s is already registered.',
$messageData[0]->__toString(),
$messageData[1]
);
*/
public function __construct (array $messageData, $code) {
// Construct the message
- $message = sprintf("[%s:] Could not make a connection, type=%s, errno=%s, errstr=%s",
+ $message = sprintf('[%s:] Could not make a connection, type=%s, errno=%s, errstr=%s',
$messageData[0]->__toString(),
gettype($messageData[1]),
$messageData[2],
*/
public function __construct (array $messageData, $code) {
// Construct the message
- $message = sprintf("[%s:] Cannot create socket, type=%s, errno=%s, errstr=%s",
+ $message = sprintf('[%s:] Cannot create socket, type=%s, errno=%s, errstr=%s',
$messageData[0]->__toString(),
$messageData[1],
$messageData[2],
*/
public function __construct (array $messageData, $code) {
// Construct the message
- $message = sprintf("[%s:] Changing option on socket failed, type=%s, errno=%s, errstr=%s",
+ $message = sprintf('[%s:] Changing option on socket failed, type=%s, errno=%s, errstr=%s',
$messageData[0]->__toString(),
gettype($messageData[1]),
$messageData[2],
$socketResource = $helperInstance->getSocketResource();
// Construct the message
- $message = sprintf("[%s:] Socket %s cannot be shutdown down. errNo=%s, errStr=%s",
+ $message = sprintf('[%s:] Socket %s cannot be shutdown down. errNo=%s, errStr=%s',
$helperInstance->__toString(),
$socketResource,
socket_last_error($socketResource),
*/
public function __construct (array $messageData, $code) {
// Construct the message
- $message = sprintf("[%s:] Socket error handler %s is not yet implemented, errorCode=%s, message=%s",
+ $message = sprintf('[%s:] Socket error handler %s is not yet implemented, errorCode=%s, message=%s',
$messageData[0]->__toString(),
$messageData[1],
$messageData[2],
/**
* The super constructor for all exceptions
*
- * @param $messageArray Error message array
- * @param $code Error code
+ * @param $messageArray Error message array
+ * @param $code Error code
* @return void
*/
public function __construct (array $messageArray, $code) {
// Construct message
- $message = sprintf("[%s:%d] Stacker %s already initialized.",
+ $message = sprintf('[%s:%d] Stacker %s already initialized, forceReInit=%d.',
$messageArray[0]->__toString(),
$this->getLine(),
- $messageArray[1]
+ $messageArray[1],
+ intval($forceReInit)
);
// Call parent exception constructor
*/
public function __construct (array $messageArray, $code) {
// Construct message
- $message = sprintf("[%s:%d] Stacker %s is empty.",
+ $message = sprintf('[%s:%d] Stacker %s is empty.',
$messageArray[0]->__toString(),
$this->getLine(),
$messageArray[1]
*/
public function __construct (array $messageArray, $code) {
// Construct message
- $message = sprintf("[%s:%d] Stacker %s is full.",
+ $message = sprintf('[%s:%d] Stacker %s is full.',
$messageArray[0]->__toString(),
$this->getLine(),
$messageArray[1]
*/
public function __construct (array $messageArray, $code) {
// Construct message
- $message = sprintf("[%s:%d] Stacker %s is not initialized.",
+ $message = sprintf('[%s:%d] Stacker %s is not initialized.',
$messageArray[0]->__toString(),
$this->getLine(),
$messageArray[1]
*/
public function __construct (array $msgArray, $code) {
// Add a message around the missing class
- $message = sprintf("[%s:%d] Invalid state %s of type %s detected.",
+ $message = sprintf('[%s:%d] Invalid state %s of type %s detected.',
$msgArray[0]->__toString(),
$this->getLine(),
$msgArray[1],
*/
public function __construct (array $msgArray, $code) {
// Prepare the message
- $message = sprintf("[%s:%d] Cannot resolve state <span class=\"exception_reason\">%s (class name: %s)</span>.",
+ $message = sprintf('[%s:%d] Cannot resolve state <span class="exception_reason">%s (class name: %s)</span>.',
$msgArray[0]->__toString(),
$this->getLine(),
$msgArray[1],
*/
public function __construct (FrameworkInterface $class, $code) {
// Add a message around the missing class
- $message = sprintf("[%s:%d] Template path is empty.",
+ $message = sprintf('[%s:%d] Template path is empty.',
$class->__toString(),
$this->getLine()
);
*/
public function __construct (array $classArray, $code) {
// Add a message around the missing class
- $message = sprintf("[%s:%d] Der Template-Basispfad %s existiert nicht oder ist eine Datei!",
+ $message = sprintf('[%s:%d] Template base path %s does not exist.',
$classArray[0]->__toString(),
$this->getLine(),
$classArray[1]
*/
public function __construct (array $classArray, $code) {
// Add a message around the missing class
- $message = sprintf("[%s:%d] Der Template-Basispfad %s ist lesegeschützt! Bitte Zugriffsrechte (CHMOD) ändern.",
+ $message = sprintf('[%s:%d] Der Template-Basispfad %s ist lesegeschützt! Bitte Zugriffsrechte (CHMOD) ändern.',
$classArray[0]->__toString(),
$this->getLine(),
$classArray[1]
*/
public function __construct (array $classArray, $code) {
// Add a message around the missing class
- $message = sprintf("[%s:%d] %s 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]
*/
public function __construct (array $messageArray, $code) {
// Add a message around the missing class
- $message = sprintf("[%s:%d] Variable %s is not set, cannot modify(?) it's value to %s.",
+ $message = sprintf('[%s:%d] Variable %s is not set, cannot modify(?) its value to %s.',
$messageArray[0]->__toString(),
$this->getLine(),
$messageArray[1],
*/
public function __construct (array $msgArray, $code) {
// Add a message around the missing class
- $message = sprintf("[%s:%d] Der Template-Typ %s entspricht nicht dem erwartetem Template-Typ %s.",
+ $message = sprintf('[%s:%d] Der Template-Typ %s entspricht nicht dem erwartetem Template-Typ %s.',
$msgArray[0]->__toString(),
$this->getLine(),
$msgArray[1],
*/
public function __construct (FrameworkInterface $class, $code) {
// Add a message around the missing class
- $message = sprintf("Template-Engine %s not (yet) supported.",
+ $message = sprintf('Template-Engine %s not (yet) supported.',
$class->__toString()
);
*/
public function __construct (Filterable $filterInstance, $code) {
// Create the message
- $message = sprintf("[%s:%d] Supplied account password did not match with stored.",
+ $message = sprintf('[%s:%d] Supplied account password did not match with stored.',
$filterInstance->__toString(),
$this->getLine()
);
*/
public function __construct (array $msgArray, $code = 0) {
// Create the message
- $message = sprintf("[%s:%d] User email %s was not found.",
+ $message = sprintf('[%s:%d] User email %s was not found.',
$msgArray[0]->__toString(),
$this->getLine(),
$msgArray[1]
*/
public function __construct (array $msgArray, $code = 0) {
// Create the message
- $message = sprintf("[%s:%d] Supplied password for user %s 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()
*/
public function __construct (array $msgArray, $code = 0) {
// Create the message
- $message = sprintf("[%s:%d] Username %s was not found.",
+ $message = sprintf('[%s:%d] Username %s was not found.',
$msgArray[0]->__toString(),
$this->getLine(),
$msgArray[1]
} // END - if
// Construct our message
- $message = sprintf("[%s:%d] Invalid XML node found: %s, attributes: %s.",
+ $message = sprintf('[%s:%d] Invalid XML node found: %s, attributes: %s.',
$classArray[0]->__toString(),
$this->getLine(),
$classArray[1],
*/
public function __construct (array $classArray, $code) {
// Construct our message
- $message = sprintf("[%s:%d] XML nodes mismatch. Given: %s, Expected: %s",
+ $message = sprintf('[%s:%d] XML nodes mismatch. Given: %s, Expected: %s',
$classArray[0]->__toString(),
$this->getLine(),
$classArray[1],
*/
public function __construct (array $classArray, $code) {
// Construct our message
- $message = sprintf("[%s:%d] XML Error: %s at line %d.",
+ $message = sprintf('[%s:%d] XML Error: %s at line %d.',
$classArray[0]->__toString(),
$this->getLine(),
xml_error_string(xml_get_error_code($classArray[1])),
// Is the stack already initialized?
if (($forceReInit === FALSE) && ($this->isStackInitialized($stackerName))) {
// Then throw the exception
- throw new AlreadyInitializedStackerException(array($this, $stackerName), self::EXCEPTION_STACKER_ALREADY_INITIALIZED);
+ throw new AlreadyInitializedStackerException(array($this, $stackerName, $forceReInit), self::EXCEPTION_STACKER_ALREADY_INITIALIZED);
} // END - if
// Initialize the given stack