Script# では、独自の例外クラスを定義できますか? 封印されているため、例外から派生させることはできません。
public class MyException : Exception {} // Cannot inherit from sealed class Exception
Exception から継承しない例外をスローしようとすると、別のエラーが発生します。
Error 22 The type caught or thrown must be derived from System.Exception
これに対するサポートはないようですか?