-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSyntaxError.php
105 lines (90 loc) · 1.7 KB
/
SyntaxError.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<?php
declare(strict_types=1);
/*
* This file is part of Mindy Framework.
* (c) 2017 Maxim Falaleev
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Mindy\Template;
use Exception;
/**
* Class SyntaxError.
*/
class SyntaxError extends Exception
{
/**
* @var Token
*/
protected $token;
/**
* @var string
*/
protected $path;
/**
* @var string
*/
protected $content;
/**
* SyntaxError constructor.
*
* @param string $message
* @param Token $token
*/
public function __construct($message, Token $token)
{
$this->token = $token;
parent::__construct(sprintf(
'%s in line %s char %s',
$message,
$token->getLine(),
$token->getChar()
));
}
public function __toString()
{
return (string) $this->message;
}
/**
* @param string $path
*
* @return $this
*/
public function setTemplateFile(string $path)
{
$this->path = $path;
return $this;
}
/**
* @param string $content
*
* @return $this
*/
public function setTemplateContent(string $content)
{
$this->content = $content;
return $this;
}
/**
* @return string
*/
public function getTemplateContent()
{
return $this->content;
}
/**
* @return string
*/
public function getTemplateFile(): string
{
return $this->path;
}
/**
* @return Token
*/
public function getToken(): Token
{
return $this->token;
}
}