-
Notifications
You must be signed in to change notification settings - Fork 563
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
remove deprecated-in-.net8 exception calls
also deprecate some unused exception classes
- Loading branch information
1 parent
a066be3
commit 7169c18
Showing
5 changed files
with
15 additions
and
34 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
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,20 +1,19 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
|
||
namespace QuickFix | ||
{ | ||
[Obsolete("This class will be removed in a future release (because it's unused)")] | ||
public class InvalidMessageTypeException : ApplicationException | ||
{ | ||
[Obsolete("This class will be removed in a future release (because it's unused)")] | ||
public InvalidMessageTypeException() { } | ||
|
||
[Obsolete("This class will be removed in a future release (because it's unused)")] | ||
public InvalidMessageTypeException(string message) | ||
: base(message) { } | ||
|
||
[Obsolete("This class will be removed in a future release (because it's unused)")] | ||
public InvalidMessageTypeException(string message, System.Exception inner) | ||
: base(message, inner) { } | ||
protected InvalidMessageTypeException( | ||
System.Runtime.Serialization.SerializationInfo info, | ||
System.Runtime.Serialization.StreamingContext context) | ||
: base(info, context) { } | ||
} | ||
} |
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
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