diff options
Diffstat (limited to 'Exceptions.h')
-rw-r--r-- | Exceptions.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/Exceptions.h b/Exceptions.h index a1aee173..1dcbbcc6 100644 --- a/Exceptions.h +++ b/Exceptions.h @@ -21,11 +21,15 @@ #pragma once +#include <libethential/Exceptions.h> + +namespace dev +{ namespace eth { /// Compile a Low-level Lisp-like Language program into EVM-code. -class CompilerException: public Exception {}; +class CompilerException: public dev::Exception {}; class InvalidOperation: public CompilerException {}; class IntegerOutOfRange: public CompilerException {}; class StringTooLong: public CompilerException {}; @@ -40,3 +44,4 @@ class BareSymbol: public CompilerException {}; class ExpectedLiteral: public CompilerException {}; } +} |