Files
wassembly/include/execute/error.hpp

19 lines
157 B
C++

#pragma once
namespace Execute
{
struct RuntimeError
{
};
struct StackUnderflow : RuntimeError
{
};
struct StackOverflow : RuntimeError
{
};
}