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