Files
RobustToolbox/Robust.Shared/ErrorMessages.cs

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