Пример #1
0
 public SVGException(SVGExceptionType errorCode, string message, Exception innerException) : base(message, innerException)
 {
     code = errorCode;
 }
Пример #2
0
 public SVGException(SVGExceptionType errorCode, string message) : this(errorCode, message, null)
 {
 }
Пример #3
0
 public SVGException(SVGExceptionType errorCode) : this(errorCode, String.Empty, null)
 {
 }
Пример #4
0
 public SVGException(SVGExceptionType errorCode, string message, Exception innerException)
     : base(message, innerException)
 {
     code = errorCode;
 }
Пример #5
0
 public SVGException(SVGExceptionType errorCode, string message)
     : this(errorCode, message, null)
 {
 }
Пример #6
0
 public SVGException(SVGExceptionType errorCode)
     : this(errorCode, String.Empty, null)
 {
 }