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

View File

@ -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)
{ {