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