コード例 #1
0
 private InvalidBasePointsException(SerializationInfo info, StreamingContext context)
     : base(info, context)
 {
     additionalMessage = info.GetString("AdditionalMessage");
     curveType = (InterpolationCurveType)info.GetInt32("DrawingType");
 }
コード例 #2
0
 public InvalidBasePointsException(string message, InterpolationCurveType curveType, string additionalMessage, Exception innerException)
     : base(message, innerException)
 {
     this.curveType = curveType;
     this.additionalMessage = additionalMessage;
 }
コード例 #3
0
 public InvalidBasePointsException(InterpolationCurveType curveType, string additionalMessage)
     : base() 
 {
     this.curveType = curveType;
     this.additionalMessage = additionalMessage;
 }
コード例 #4
0
 private UnmatchedCurveParamTypeException(SerializationInfo info, StreamingContext context)
     : base(info, context)
 {
     curveType1 = (InterpolationCurveType)info.GetInt32("DrawingType");
     curveType2 = (InterpolationCurveType)info.GetInt32("ParameterType");
 }
コード例 #5
0
 public UnmatchedCurveParamTypeException(string message, InterpolationCurveType curveType1, InterpolationCurveType curveType2, Exception innerException)
     : base(message, innerException) 
 {
     this.curveType1 = curveType1;
     this.curveType2 = curveType2;
 }
コード例 #6
0
 public UnmatchedCurveParamTypeException(InterpolationCurveType curveType1, InterpolationCurveType curveType2)
     : base() 
 {
     this.curveType1 = curveType1;
     this.curveType2 = curveType2;
 }