-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Get Modifications from Full Sequence (#796)
* started mod methods * made the test pass * Removed GetMods after deserialization method in favor of IBiopolymerWithSetMods backing method * added throws to summary comment and extended mzlibexception to have an inner exception. * Made inner exception nullable in MzLibException --------- Co-authored-by: trishorts <mshort@chem.wisc.edu>
- Loading branch information
Showing
6 changed files
with
181 additions
and
67 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,8 +1,9 @@ | ||
using System; | ||
#nullable enable | ||
using System; | ||
|
||
namespace MzLibUtil | ||
{ | ||
[Serializable] | ||
public class MzLibException(string message, Exception innerException = null) | ||
public class MzLibException(string message, Exception? innerException = null) | ||
: Exception(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
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
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