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