Files
fdn2/app/private/lib/gui/GUIException.php
T
2022-08-29 23:20:16 +02:00

10 lines
189 B
PHP

<?php
class GUIException extends MultimessageException{
public function __construct($mixed){
if (!is_array($mixed)){
$mixed = array($mixed);
}
parent::__construct($mixed);
}
}