openrat-cms

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

PublisherException.class.php (291B)


      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 }