Move InvalidDeposit/InvalidOpcode from Instructions.h to Exceptions.h

This commit is contained in:
Alex Beregszaszi
2019-11-26 12:21:06 +01:00
parent 200a92b40e
commit fc10fc3073
2 changed files with 3 additions and 3 deletions
+3
View File
@@ -33,5 +33,8 @@ struct OptimizerException: virtual AssemblyException {};
struct StackTooDeepException: virtual OptimizerException {};
struct ItemNotAvailableException: virtual OptimizerException {};
DEV_SIMPLE_EXCEPTION(InvalidDeposit);
DEV_SIMPLE_EXCEPTION(InvalidOpcode);
}
}