Flow\SyntaxError::__construct PHP Méthode

__construct() public méthode

public __construct ( $message, $token )
    public function __construct($message, $token)
    {
        $this->token = $token;
        $line = $token->getLine();
        $char = $token->getChar();
        parent::__construct("{$message} in line {$line} char {$char}");
    }