using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace RomCheater.UserSettingsSupport { internal static class ExceptionUtil { internal static ArgumentException ParameterInvalid(string parameter) { return new ArgumentException(SR.GetString("Parameter_Invalid", new object[] { parameter }), parameter); } } }