Files
RobustToolbox/Robust.Shared/Serialization/Manager/Exceptions/RequiredFieldNotMappedException.cs

11 lines
316 B
C#

using System;
namespace Robust.Shared.Serialization.Manager.Exceptions;
public sealed class RequiredFieldNotMappedException : Exception
{
public RequiredFieldNotMappedException(Type type, string field, Type dataDef) : base($"Required field {field} of type {type} in {dataDef} wasn't mapped.")
{
}
}