Grantlee  5.1.0
templates/lib/exception.h
00001 /*
00002   This file is part of the Grantlee template system.
00003 
00004   Copyright (c) 2009,2010 Stephen Kelly <steveire@gmail.com>
00005 
00006   This library is free software; you can redistribute it and/or
00007   modify it under the terms of the GNU Lesser General Public
00008   License as published by the Free Software Foundation; either version
00009   2.1 of the Licence, or (at your option) any later version.
00010 
00011   This library is distributed in the hope that it will be useful,
00012   but WITHOUT ANY WARRANTY; without even the implied warranty of
00013   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
00014   Lesser General Public License for more details.
00015 
00016   You should have received a copy of the GNU Lesser General Public
00017   License along with this library.  If not, see <http://www.gnu.org/licenses/>.
00018 
00019 */
00020 
00021 #ifndef GRANTLEE_EXCEPTION_H
00022 #define GRANTLEE_EXCEPTION_H
00023 
00024 #include "grantlee_templates_export.h"
00025 
00026 #include <QtCore/QString>
00027 
00028 #include <exception>
00029 
00030 namespace Grantlee
00031 {
00032 
00036 enum Error {
00037   NoError,
00038   EmptyVariableError,
00039   EmptyBlockTagError,
00040   InvalidBlockTagError,
00041   UnclosedBlockTagError,
00042   UnknownFilterError,
00043   TagSyntaxError,
00044   //   VariableSyntaxError,
00045 
00046   VariableNotInContext,
00047   ObjectReturnTypeInvalid,
00048   CompileFunctionError
00049 };
00050 
00052 
00082 class GRANTLEE_TEMPLATES_EXPORT Exception
00083 {
00084 public:
00089   Exception(Error errorCode, const QString &what)
00090       : m_errorCode(errorCode), m_what(what)
00091   {
00092   }
00093 
00094   virtual ~Exception() throw() {}
00095 
00096 #ifndef Q_QDOC
00097 
00102   const QString what() const throw() { return m_what; }
00103 
00109   Error errorCode() const { return m_errorCode; }
00110 #endif
00111 
00112 private:
00113   Error m_errorCode;
00114   QString m_what;
00115 };
00116 }
00117 
00118 #endif