Memory added plus basic memory operations
This commit is contained in:
19
include/execute/error.hpp
Normal file
19
include/execute/error.hpp
Normal file
@@ -0,0 +1,19 @@
|
||||
#pragma once
|
||||
|
||||
namespace Execute
|
||||
{
|
||||
struct RuntimeError
|
||||
{
|
||||
|
||||
};
|
||||
|
||||
struct StackUnderflow : RuntimeError
|
||||
{
|
||||
|
||||
};
|
||||
|
||||
struct StackOverflow : RuntimeError
|
||||
{
|
||||
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user