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