Add string input interrupt from STDIN

This commit is contained in:
2020-05-17 14:13:15 +02:00
parent 2d820e7028
commit fc2870ca74
5 changed files with 92 additions and 16 deletions

View File

@@ -39,6 +39,12 @@ namespace Execute
InterruptIndexOutOfRange(int const index);
};
class OutOfMemory : public RuntimeError
{
public:
OutOfMemory(int const memoryLocation, int const memorySize);
};
namespace Internal
{
class BadValueType : public RuntimeError