-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#34 Exclude more types from code coverage
- Loading branch information
Showing
5 changed files
with
9 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,9 @@ | ||
namespace Pose.Exceptions | ||
{ | ||
using System; | ||
using System.Runtime.Serialization; | ||
|
||
[Serializable] | ||
internal class InvalidShimSignatureException : Exception | ||
public class InvalidShimSignatureException : Exception | ||
{ | ||
public InvalidShimSignatureException() { } | ||
public InvalidShimSignatureException(string message) : base(message) { } | ||
public InvalidShimSignatureException(string message, Exception inner) : base(message, inner) { } | ||
|
||
#if !NET8_0_OR_GREATER | ||
protected InvalidShimSignatureException(SerializationInfo info, StreamingContext context) : base(info, context) { } | ||
#endif | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,9 @@ | ||
namespace Pose.Exceptions | ||
{ | ||
using System; | ||
using System.Runtime.Serialization; | ||
|
||
[Serializable] | ||
public class MethodRewriteException : Exception | ||
{ | ||
public MethodRewriteException() { } | ||
|
||
#if !NET8_0_OR_GREATER | ||
protected MethodRewriteException(SerializationInfo info, StreamingContext context) : base(info, context) { } | ||
#endif | ||
|
||
public MethodRewriteException(string message) : base(message) { } | ||
|
||
public MethodRewriteException(string message, Exception innerException) : base(message, innerException) { } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,9 @@ | ||
namespace Pose.Exceptions | ||
{ | ||
using System; | ||
using System.Runtime.Serialization; | ||
|
||
|
||
public class UnsupportedExpressionException : Exception | ||
{ | ||
public UnsupportedExpressionException() { } | ||
public UnsupportedExpressionException(string message) : base(message) { } | ||
public UnsupportedExpressionException(string message, Exception inner) : base(message, inner) { } | ||
|
||
#if !NET8_0_OR_GREATER | ||
protected UnsupportedExpressionException(SerializationInfo info, StreamingContext context) : base(info, context) { } | ||
#endif | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters