using System; namespace Encompass.Exceptions { public class IllegalReadTypeException : Exception { public IllegalReadTypeException( string format, params object[] args ) : base(string.Format(format, args)) { } } }