13 lines
331 B
C#
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)
|
|
{
|
|
}
|
|
}
|
|
}
|