mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-15 03:30:53 +01:00
Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Co-authored-by: metalgearsloth <comedian_vs_clown@hotmail.com>
10 lines
297 B
C#
10 lines
297 B
C#
namespace Robust.Shared
|
|
{
|
|
public static class ErrorMessages
|
|
{
|
|
|
|
public const string InvalidStringFormat = "Invalid string format. Expected a string in the format \"{0}\".";
|
|
public const string NullNotAllowed = "This method does not accept null for this parameter.";
|
|
}
|
|
}
|