File tree 1 file changed +2
-10
lines changed
1 file changed +2
-10
lines changed Original file line number Diff line number Diff line change 5
5
6
6
namespace Coverlet . Core . Exceptions
7
7
{
8
- [ Serializable ]
9
8
public class CoverletException : Exception
10
9
{
11
10
public CoverletException ( ) { }
12
11
public CoverletException ( string message ) : base ( message ) { }
13
- public CoverletException ( string message , System . Exception inner ) : base ( message , inner ) { }
14
- protected CoverletException (
15
- System . Runtime . Serialization . SerializationInfo info ,
16
- System . Runtime . Serialization . StreamingContext context ) : base ( info , context ) { }
12
+ public CoverletException ( string message , Exception inner ) : base ( message , inner ) { }
17
13
}
18
14
19
- [ Serializable ]
20
15
internal class CecilAssemblyResolutionException : CoverletException
21
16
{
22
17
public CecilAssemblyResolutionException ( ) { }
23
18
public CecilAssemblyResolutionException ( string message ) : base ( message ) { }
24
- public CecilAssemblyResolutionException ( string message , System . Exception inner ) : base ( message , inner ) { }
25
- protected CecilAssemblyResolutionException (
26
- System . Runtime . Serialization . SerializationInfo info ,
27
- System . Runtime . Serialization . StreamingContext context ) : base ( info , context ) { }
19
+ public CecilAssemblyResolutionException ( string message , Exception inner ) : base ( message , inner ) { }
28
20
}
29
21
}
You can’t perform that action at this time.
0 commit comments