From 675aed1edfcff1cf7cd68cc92582d987820e4729 Mon Sep 17 00:00:00 2001 From: LianaHus Date: Thu, 15 Oct 2015 11:50:25 +0200 Subject: fixed new tests --- libsolidity/Exceptions.h | 27 +-------------------------- 1 file changed, 1 insertion(+), 26 deletions(-) (limited to 'libsolidity/Exceptions.h') diff --git a/libsolidity/Exceptions.h b/libsolidity/Exceptions.h index 92c009ef..9bc22994 100644 --- a/libsolidity/Exceptions.h +++ b/libsolidity/Exceptions.h @@ -26,7 +26,6 @@ #include #include #include -#include namespace dev { @@ -51,35 +50,11 @@ public: Warning }; - Error(Type _type) : m_type(_type) - { - switch(m_type) - { - case Type::DeclarationError: - m_typeName = "Declaration Error"; - break; - case Type::DocstringParsingError: - m_typeName = "Docstring Parsing Error"; - break; - case Type::ParserError: - m_typeName = "Parser Error"; - break; - case Type::TypeError: - m_typeName = "Type Error"; - break; - case Type::Warning: - m_typeName = "Warning"; - break; - default: - solAssert(false, ""); - break; - } - } + explicit Error(Type _type); Type type() const { return m_type; } std::string const& typeName() const { return m_typeName; } - /// helper functions static Error const* containsErrorOfType(ErrorList const& _list, Error::Type _type) { -- cgit