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