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

13 lines
348 B
C#

using System;
namespace Gaia.FullSerializer
{
public sealed class fsDuplicateVersionNameException : Exception
{
public fsDuplicateVersionNameException(Type typeA, Type typeB, string version)
: base(typeA?.ToString() + " and " + typeB?.ToString() + " have the same version string (" + version + "); please change one of them.")
{
}
}
}