Pinq\PinqException::__construct PHP 메소드

__construct() 공개 메소드

public __construct ( string $messageFormat = '', mixed $_ = null )
$messageFormat string
$_ mixed The values to interpolate the message with
    public function __construct($messageFormat = '', $_ = null)
    {
        if (func_num_args() === 1) {
            $message = $messageFormat;
        } else {
            $message = call_user_func_array('sprintf', func_get_args());
        }
        parent::__construct($message, null, null);
    }