示例#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)
 {
 }
 public SVGException(SVGExceptionType errorCode, string message, Exception innerException)
     : base(message, innerException)
 {
     code = errorCode;
 }
 public SVGException(SVGExceptionType errorCode, string message)
     : this(errorCode, message, null)
 {
 }
 public SVGException(SVGExceptionType errorCode)
     : this(errorCode, String.Empty, null)
 {
 }