Skip to content

Commit

Permalink
Made inner exception nullable in MzLibException
Browse files Browse the repository at this point in the history
  • Loading branch information
nbollis committed Oct 23, 2024
1 parent 2d491e0 commit da7ee7d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mzLib/MzLibUtil/MzLibException.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
namespace MzLibUtil
{
[Serializable]
public class MzLibException(string message, Exception innerException = null)
public class MzLibException(string message, Exception? innerException = null)
: Exception(message, innerException);
}

0 comments on commit da7ee7d

Please sign in to comment.