Skip to content

Commit c863923

Browse files
committed
Fix SerializationException constructor visibility
1 parent 56665ab commit c863923

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Shared/MessagePack/Exceptions/SerializationException.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ namespace nanoFramework.MessagePack.Exceptions
44
{
55
public class SerializationException : Exception
66
{
7-
internal SerializationException(string message) : base(message)
7+
public SerializationException(string message) : base(message)
88
{
99

1010
}

0 commit comments

Comments
 (0)