編譯器錯誤 CS0155
類型 catch 或 throw 必須衍生自 System.Exception
嘗試將未衍生自 System.Exception 的資料類型傳遞至 catch 區塊。 只有衍生自 System.Exception 的資料類型才能傳遞至 catch 區塊。 如需詳細資訊,請參閱例外狀況和例外狀況處理。
下列範例會產生 CS0155:
// CS0155.cs
using System;
namespace MyNamespace
{
public class MyClass2
// try the following line instead
// public class MyClass2 : Exception
{
}
public class MyClass
{
public static void Main()
{
try
{
}
catch (MyClass2) // CS0155, resolves if you derive MyClass2 from Exception
{
}
}
}
}