Newer
Older
DNA / corlib / System / NotImplementedException.cs
@Chris Bacon Chris Bacon on 21 Jan 2012 361 bytes First commit
#if !LOCALTEST

namespace System {
	public class NotImplementedException : SystemException {
		public NotImplementedException() : base("The requested feature is not implemented.") { }

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

		public NotImplementedException(string message, Exception inner) : base(message, inner) { }
	}
}

#endif