84977835创建于 2023年12月15日历史提交
public class FooException : Exception
{
}

public class BarException : FooException
{
}

public static class Test
{
	public static void Throw() throws FooException
	{
		throw BarException("foo");
	}

	public static bool Run()
	{
		return true;
	}
}