mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-07-27 07:44:04 +02:00
Document variadic function IcingaException::__construct properly
refs #9644
This commit is contained in:
parent
a68c05da7f
commit
b84650dd4b
@ -9,11 +9,12 @@ use ReflectionClass;
|
|||||||
class IcingaException extends Exception
|
class IcingaException extends Exception
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* @param string $message format string for vsprintf()
|
* Create a new exception
|
||||||
* Any futher args: args for vsprintf()
|
|
||||||
* @see vsprintf
|
|
||||||
*
|
*
|
||||||
* If there is at least one exception, the last one will be also used for the exception chaining.
|
* @param string $message Exception message or exception format string
|
||||||
|
* @param mixed ...$arg Format string argument
|
||||||
|
*
|
||||||
|
* If there is at least one exception, the last one will be used for exception chaining.
|
||||||
*/
|
*/
|
||||||
public function __construct($message)
|
public function __construct($message)
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user