Make protected

This commit is contained in:
Tristan B. Velloza Kildaire 2023-06-28 16:58:48 +02:00
parent 1480a5afca
commit 2df7d833cf
1 changed files with 2 additions and 2 deletions

View File

@ -19,7 +19,7 @@ public abstract class JStructException : Exception
*/
public final class SerializationError : JStructException
{
this()
protected this()
{
super("Error serializing");
}
@ -30,7 +30,7 @@ public final class SerializationError : JStructException
*/
public final class DeserializationError : JStructException
{
this()
protected this()
{
super("Error deserializing");
}