Example #1
0
 public SvgException(SvgExceptionType errorCode, string message, Exception innerException) : base(message, innerException)
 {
     code = errorCode;
 }
Example #2
0
 public SvgException(SvgExceptionType errorCode, string message) : this(errorCode, message, null)
 {
 }
Example #3
0
 public SvgException(SvgExceptionType errorCode) : this(errorCode, String.Empty, null)
 {
 }
Example #4
0
 public SvgException(SvgExceptionType errorCode, string message, Exception innerException)
     : base(message, innerException)
 {
     code = errorCode;
 }
Example #5
0
 public SvgException(SvgExceptionType errorCode, string message)
     : this(errorCode, message, null)
 {
 }
Example #6
0
 public SvgException(SvgExceptionType errorCode)
     : this(errorCode, String.Empty, null)
 {
 }