Files
RobustToolbox/Robust.Shared/ErrorMessages.cs
2022-02-05 19:31:58 +01:00

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.";
}
}