File modules/util/exception/PublisherException.class.php

Last commit: Sat Aug 29 03:23:06 2020 +0200	Jan Dankert	Refactoring: Improved Exception-Handling; New: Generating pages using a page context which considers page aliases.
1 <?php 2 3 namespace util\exception; 4 use Exception; 5 6 class PublisherException extends Exception { 7 8 // Die Exception neu definieren, damit die Mitteilung nicht optional ist 9 public function __construct($message, Exception $previous = null) 10 { 11 parent::__construct($message, 0, $previous); 12 } 13 }
Download modules/util/exception/PublisherException.class.php
History Sat, 29 Aug 2020 03:23:06 +0200 Jan Dankert Refactoring: Improved Exception-Handling; New: Generating pages using a page context which considers page aliases.