Compare commits

...

1 Commits

Author SHA1 Message Date
Tristan B. Velloza Kildaire d99bfbaf35 Fix 2023-06-28 16:59:22 +02:00
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");
}