Newer
Older
DNA / corlib / System / InvalidOperationException.cs
@Chris Bacon Chris Bacon on 21 Jan 2012 391 bytes First commit
namespace System {
	public class InvalidOperationException : SystemException {

		public InvalidOperationException()
			: base("Operation is not valid due to the current state of the object") { }

		public InvalidOperationException(string message) : base(message) { }

		public InvalidOperationException(string message, Exception innerException)
			: base(message, innerException) { }

	}
}