Files
GoKart/trunk/Common/IO/SettingReadException.cs
Andrew 6d74d5b59e source
Created by: Andrew
2016-08-27 22:43:23 -04:00

10 lines
221 B
C#

using System;
namespace KartExtreme.IO
{
public class SettingReadException : Exception
{
public SettingReadException(string key) : base(string.Format("Failed to read setting '{0}'.", key)) { }
}
}