Parent Directory
|
Revision Log
1 | using System; |
2 | using System.Collections.Generic; |
3 | using System.Linq; |
4 | using System.Text; |
5 | |
6 | namespace RomCheater.UserSettingsSupport |
7 | { |
8 | internal static class ExceptionUtil |
9 | { |
10 | internal static ArgumentException ParameterInvalid(string parameter) |
11 | { |
12 | return new ArgumentException(SR.GetString("Parameter_Invalid", new object[] { parameter }), parameter); |
13 | } |
14 | |
15 | |
16 | } |
17 | } |
ViewVC Help | |
Powered by ViewVC 1.1.22 |