Files
UltimateFishing2020/Assets/Scripts/Assembly-CSharp/Gaia/FullSerializer/fsMissingVersionConstructorException.cs
2026-03-04 10:03:45 +08:00

13 lines
331 B
C#

using System;
namespace Gaia.FullSerializer
{
public sealed class fsMissingVersionConstructorException : Exception
{
public fsMissingVersionConstructorException(Type versionedType, Type constructorType)
: base(versionedType?.ToString() + " is missing a constructor for previous model type " + constructorType)
{
}
}
}