19 lines
157 B
C++
19 lines
157 B
C++
#pragma once
|
|
|
|
namespace Execute
|
|
{
|
|
struct RuntimeError
|
|
{
|
|
|
|
};
|
|
|
|
struct StackUnderflow : RuntimeError
|
|
{
|
|
|
|
};
|
|
|
|
struct StackOverflow : RuntimeError
|
|
{
|
|
|
|
};
|
|
} |