mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-03 02:27:08 +02:00
Co-authored-by: Paul <ritter.paul1@gmail.com> Co-authored-by: metalgearsloth <comedian_vs_clown@hotmail.com> Co-authored-by: DrSmugleaf <DrSmugleaf@users.noreply.github.com>
11 lines
289 B
C#
11 lines
289 B
C#
using System;
|
|
|
|
namespace Robust.Shared.Serialization.Manager.Exceptions;
|
|
|
|
public sealed class RequiredFieldNotMappedException : Exception
|
|
{
|
|
public RequiredFieldNotMappedException(Type type, string field) : base($"Required field {field} of type {type} wasn't mapped.")
|
|
{
|
|
}
|
|
}
|