includes/Storage/Exceptions/InvalidLogType.php 0000666 00000000507 15133500137 0015506 0 ustar 00 <?php
namespace MediaWiki\Extension\Thanks\Storage\Exceptions;
use Exception;
class InvalidLogType extends Exception {
private string $logType;
public function __construct( string $logType ) {
parent::__construct();
$this->logType = $logType;
}
public function getLogType(): string {
return $this->logType;
}
}
Back to Directory