solidity/liblangutil/Exceptions.cpp

67 lines
1.7 KiB
C++
Raw Normal View History

2015-10-15 09:50:25 +00:00
/*
This file is part of solidity.
2015-10-15 09:50:25 +00:00
solidity is free software: you can redistribute it and/or modify
2015-10-15 09:50:25 +00:00
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
solidity is distributed in the hope that it will be useful,
2015-10-15 09:50:25 +00:00
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with solidity. If not, see <http://www.gnu.org/licenses/>.
2015-10-15 09:50:25 +00:00
*/
/**
2015-10-15 12:36:23 +00:00
* @author Liana <liana@ethdev.com>
2015-10-15 09:50:25 +00:00
* @date 2015
* Solidity exception hierarchy.
*/
#include <liblangutil/Exceptions.h>
2015-10-15 09:50:25 +00:00
2017-02-24 18:31:20 +00:00
using namespace std;
2015-10-15 09:50:25 +00:00
using namespace dev;
using namespace langutil;
2015-10-15 09:50:25 +00:00
2017-03-03 17:44:28 +00:00
Error::Error(Type _type, SourceLocation const& _location, string const& _description):
m_type(_type)
2015-10-15 09:50:25 +00:00
{
2019-11-11 16:09:59 +00:00
switch (m_type)
2015-10-15 09:50:25 +00:00
{
2015-10-21 14:43:31 +00:00
case Type::DeclarationError:
m_typeName = "DeclarationError";
2015-10-21 14:43:31 +00:00
break;
case Type::DocstringParsingError:
m_typeName = "DocstringParsingError";
2015-10-21 14:43:31 +00:00
break;
case Type::ParserError:
m_typeName = "ParserError";
2015-10-21 14:43:31 +00:00
break;
case Type::SyntaxError:
m_typeName = "SyntaxError";
break;
2015-10-21 14:43:31 +00:00
case Type::TypeError:
m_typeName = "TypeError";
2015-10-21 14:43:31 +00:00
break;
case Type::Warning:
m_typeName = "Warning";
break;
2015-10-15 09:50:25 +00:00
}
2017-03-03 17:44:28 +00:00
if (!_location.isEmpty())
*this << errinfo_sourceLocation(_location);
if (!_description.empty())
*this << errinfo_comment(_description);
2015-10-15 09:50:25 +00:00
}
2017-02-24 18:31:20 +00:00
2019-02-14 10:37:24 +00:00
Error::Error(Error::Type _type, std::string const& _description, SourceLocation const& _location):
2017-02-15 13:52:53 +00:00
Error(_type)
{
if (!_location.isEmpty())
*this << errinfo_sourceLocation(_location);
*this << errinfo_comment(_description);
}