mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-01 17:47:24 +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>
9 lines
237 B
C#
9 lines
237 B
C#
using System;
|
|
|
|
namespace Robust.Shared.Serialization.Manager.Exceptions;
|
|
|
|
public sealed class NullNotAllowedException : Exception
|
|
{
|
|
public override string Message => "Null value provided for reading but type was not nullable!";
|
|
}
|