Add a Guard for strings that aren't at least a minimum length. ```csharp Guard.Against.TooShort("abc", 4); // throws ArgumentException ```