コード例 #1
0
ファイル: JsException.cs プロジェクト: pvginkel/Jint2
 public JsException(JsErrorType type, string message)
     : base(message)
 {
     Type = type;
 }
コード例 #2
0
ファイル: JsException.cs プロジェクト: pvginkel/Jint2
 public JsException(JsErrorType type)
     : this(type, null)
 {
 }