Files
wassembly/include/execute/error.hpp

27 lines
231 B
C++

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