コード例 #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)
 {
 }