mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-01 17:47:24 +02:00
11 lines
316 B
C#
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.")
|
|
{
|
|
}
|
|
}
|