コード例 #1
0
ファイル: DOMException.cs プロジェクト: MrJoy/UnitySVG
 public DOMException(DOMExceptionType code,
                   string msg,
                   Exception innerException)
     : base(msg, innerException)
 {
     this.code = code;
 }
コード例 #2
0
 public DOMException(DOMExceptionType type, JsString messageException) { }
コード例 #3
0
 public DOMException(DOMExceptionType type) { }
コード例 #4
0
 public DOMException(DOMExceptionType code,
                     string msg,
                     Exception innerException) : base(msg, innerException)
 {
     this.code = code;
 }
コード例 #5
0
 public DOMException(DOMExceptionType code, string msg) : this(code, msg, null)
 {
 }
コード例 #6
0
 public DOMException(DOMExceptionType code) : this(code, String.Empty)
 {
 }
コード例 #7
0
ファイル: DOMException.cs プロジェクト: MrJoy/UnitySVG
 public DOMException(DOMExceptionType code, string msg)
     : this(code, msg, null)
 {
 }
コード例 #8
0
ファイル: DOMException.cs プロジェクト: MrJoy/UnitySVG
 public DOMException(DOMExceptionType code)
     : this(code, String.Empty)
 {
 }
コード例 #9
0
 public DOMException(DOMExceptionType type, JsString messageException)
 {
 }
コード例 #10
0
 public DOMException(DOMExceptionType type)
 {
 }