27 lines
231 B
C++
27 lines
231 B
C++
#pragma once
|
|
|
|
namespace Execute
|
|
{
|
|
struct RuntimeError
|
|
{
|
|
|
|
};
|
|
|
|
struct StackUnderflow : RuntimeError
|
|
{
|
|
|
|
};
|
|
|
|
struct StackOverflow : RuntimeError
|
|
{
|
|
|
|
};
|
|
|
|
namespace Internal
|
|
{
|
|
struct BadValueType : RuntimeError
|
|
{
|
|
|
|
};
|
|
}
|
|
} |