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

9 lines
160 B
PHP
Raw Normal View History

2013-10-05 12:55:03 +02:00
<?php
class SimpleException extends Exception
{
public function __construct()
{
parent::__construct(call_user_func_array('sprintf', func_get_args()));
}
2013-10-05 12:55:03 +02:00
}