This repository has been archived on 2025-02-26. You can view files and clone it, but cannot push or open issues or pull requests.
szurubooru/src/SimpleException.php
2014-05-05 17:47:30 +02:00

10 lines
209 B
PHP

<?php
class SimpleException extends Exception
{
public function __construct()
{
parent::__construct(func_num_args() > 1
? call_user_func_array('sprintf', func_get_args())
: func_get_args()[0]);
}
}