diff options
author | Christian <c@ethdev.com> | 2014-11-06 21:50:18 +0800 |
---|---|---|
committer | Christian <c@ethdev.com> | 2014-11-06 21:50:18 +0800 |
commit | 476853f3feb2159fa24a85826c19e7e5190d3770 (patch) | |
tree | 6bda3f938d8e0332e8cbe1374d88dfc4f1103678 /Exceptions.h | |
parent | fd980ea543a9d666dd20289ac61cfbe40a039d5e (diff) | |
download | dexon-solidity-476853f3feb2159fa24a85826c19e7e5190d3770.tar dexon-solidity-476853f3feb2159fa24a85826c19e7e5190d3770.tar.gz dexon-solidity-476853f3feb2159fa24a85826c19e7e5190d3770.tar.bz2 dexon-solidity-476853f3feb2159fa24a85826c19e7e5190d3770.tar.lz dexon-solidity-476853f3feb2159fa24a85826c19e7e5190d3770.tar.xz dexon-solidity-476853f3feb2159fa24a85826c19e7e5190d3770.tar.zst dexon-solidity-476853f3feb2159fa24a85826c19e7e5190d3770.zip |
Moved instructions and assembly to new libevmcore.
Diffstat (limited to 'Exceptions.h')
-rw-r--r-- | Exceptions.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Exceptions.h b/Exceptions.h index c45215f1..1e9671b3 100644 --- a/Exceptions.h +++ b/Exceptions.h @@ -32,16 +32,13 @@ namespace eth class CompilerException: public dev::Exception {}; class InvalidOperation: public CompilerException {}; class IntegerOutOfRange: public CompilerException {}; -class StringTooLong: public CompilerException {}; class EmptyList: public CompilerException {}; class DataNotExecutable: public CompilerException {}; class IncorrectParameterCount: public CompilerException {}; -class InvalidDeposit: public CompilerException {}; class InvalidName: public CompilerException {}; class InvalidMacroArgs: public CompilerException {}; class InvalidLiteral: public CompilerException {}; class BareSymbol: public CompilerException {}; -class ExpectedLiteral: public CompilerException {}; } } |