This commit is contained in:
Tristan B. Velloza Kildaire 2023-06-28 16:59:22 +02:00
parent 2df7d833cf
commit d99bfbaf35
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
{
protected this()
this()
{
super("Error serializing");
}
@ -30,7 +30,7 @@ public final class SerializationError : JStructException
*/
public final class DeserializationError : JStructException
{
protected this()
this()
{
super("Error deserializing");
}