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