Document variadic function IcingaException::__construct properly

refs #9644
This commit is contained in:
Eric Lippmann 2015-07-28 10:45:00 +02:00
parent a68c05da7f
commit b84650dd4b
1 changed files with 5 additions and 4 deletions

View File

@ -9,11 +9,12 @@ use ReflectionClass;
class IcingaException extends Exception
{
/**
* @param string $message format string for vsprintf()
* Any futher args: args for vsprintf()
* @see vsprintf
* Create a new exception
*
* 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)
{