17 #ifndef NURIA_TEMPLATEERROR_HPP
18 #define NURIA_TEMPLATEERROR_HPP
20 #include "twig_global.hpp"
21 #include <QSharedData>
26 class TemplateErrorPrivate;
45 constexpr
Location (
int row = 0,
int column = 0)
46 : row (row), column (column)
56 bool operator< (
const Location &right)
const;
94 TemplateNotFound = 100,
111 NonConstantExpression = 400,
146 TemplateError (Component component = None, Error error = NoError,
const QString &what = QString(),
165 bool hasFailed ()
const;
168 Component component ()
const;
171 QString componentName ()
const;
174 Error error ()
const;
177 QString errorName ()
const;
180 QString what ()
const;
186 static QString componentName (Component component);
189 static QString errorName (Error error);
192 QExplicitlySharedDataPointer< TemplateErrorPrivate > d;
200 #endif // NURIA_TEMPLATEERROR_HPP
Storage for a location in Twig code.
Definition: templateerror.hpp:44
Definition: templateerror.hpp:117
Container for exposing Twig errors to user code.
Definition: templateerror.hpp:75
Definition: abstractsessionmanager.hpp:24
int row
Definition: templateerror.hpp:50
Definition: templateerror.hpp:105
Definition: templateerror.hpp:123
Definition: templateerror.hpp:135
Error
Definition: templateerror.hpp:90
int column
Definition: templateerror.hpp:53
Definition: templateerror.hpp:141
Component
Definition: templateerror.hpp:79
General-purpose run-time tokenizer.
Definition: tokenizer.hpp:231
Definition: templateerror.hpp:129