public DomException(DomExceptionType code, string msg)
     : this(code, msg, null)
 {
 }
 public DomException(DomExceptionType code, string msg, Exception innerException)
     : base(msg, innerException)
 {
     this.code = code;
 }
 public DomException(DomExceptionType code)
     : this(code, String.Empty)
 {
 }
Beispiel #4
0
 public DomException(DomExceptionType code, string msg, Exception innerException) : base(msg, innerException)
 {
     this.code = code;
 }
Beispiel #5
0
 public DomException(DomExceptionType code, string msg) : this(code, msg, null)
 {
 }
Beispiel #6
0
 public DomException(DomExceptionType code) : this(code, String.Empty)
 {
 }
Beispiel #7
0
 /// <summary>
 /// Initializes a new instance of the System.Exception class.
 /// </summary>
 public DomException()
 {
     _exceptionCode = DomExceptionType.UnknowError;
 }