aboutsummaryrefslogtreecommitdiffstats
path: root/libsolidity/Exceptions.h
diff options
context:
space:
mode:
Diffstat (limited to 'libsolidity/Exceptions.h')
-rw-r--r--libsolidity/Exceptions.h27
1 files changed, 1 insertions, 26 deletions
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 <utility>
#include <libdevcore/Exceptions.h>
#include <libevmasm/SourceLocation.h>
-#include <libsolidity/Utils.h>
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)
{