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

namespace System {
	public class NotSupportedException : SystemException {

		public NotSupportedException() : base("Operation is not supported.") { }

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

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

	}
}

#endif