@@ -19,11 +19,6 @@ public NonConvergenceException(string message) : base(message)
1919 public NonConvergenceException ( string message , Exception innerException ) : base ( message , innerException )
2020 {
2121 }
22-
23- protected NonConvergenceException ( System . Runtime . Serialization . SerializationInfo info , System . Runtime . Serialization . StreamingContext context )
24- : base ( info , context )
25- {
26- }
2722 }
2823
2924 /// <summary>
@@ -46,11 +41,6 @@ public NumericalBreakdownException(string message, Exception innerException)
4641 : base ( message , innerException )
4742 {
4843 }
49-
50- protected NumericalBreakdownException ( System . Runtime . Serialization . SerializationInfo info , System . Runtime . Serialization . StreamingContext context )
51- : base ( info , context )
52- {
53- }
5444 }
5545
5646 /// <summary>
@@ -72,11 +62,6 @@ protected NativeInterfaceException(string message, Exception innerException)
7262 : base ( message , innerException )
7363 {
7464 }
75-
76- protected NativeInterfaceException ( System . Runtime . Serialization . SerializationInfo info , System . Runtime . Serialization . StreamingContext context )
77- : base ( info , context )
78- {
79- }
8065 }
8166
8267 /// <summary>
@@ -99,11 +84,6 @@ public InvalidParameterException(int parameter, Exception innerException)
9984 : base ( $ "An invalid parameter was passed to a native method, parameter number : { parameter } ", innerException )
10085 {
10186 }
102-
103- protected InvalidParameterException ( System . Runtime . Serialization . SerializationInfo info , System . Runtime . Serialization . StreamingContext context )
104- : base ( info , context )
105- {
106- }
10787 }
10888
10989 /// <summary>
@@ -121,11 +101,6 @@ public MemoryAllocationException(Exception innerException)
121101 : base ( "Unable to allocate native memory." , innerException )
122102 {
123103 }
124-
125- protected MemoryAllocationException ( System . Runtime . Serialization . SerializationInfo info , System . Runtime . Serialization . StreamingContext context )
126- : base ( info , context )
127- {
128- }
129104 }
130105
131106 /// <summary>
@@ -148,10 +123,5 @@ public SingularUMatrixException(int element, Exception innerException)
148123 : base ( $ "U is singular, and the inversion could not be completed. The { element } -th diagonal element of the factor U is zero.", innerException )
149124 {
150125 }
151-
152- protected SingularUMatrixException ( System . Runtime . Serialization . SerializationInfo info , System . Runtime . Serialization . StreamingContext context )
153- : base ( info , context )
154- {
155- }
156126 }
157127}
0 commit comments