encompass-cs/src/exceptions/IllegalComponentMutationExc...

11 lines
270 B
C#

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