ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/RomCheater/trunk/RomCheater.UserSettingsSupport/ExceptionUtil.cs
Revision: 722
Committed: Tue Jun 18 19:18:05 2013 UTC (10 years, 3 months ago) by william
File size: 419 byte(s)
Log Message:

File Contents

# Content
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 }