// // System.NotSupportedException.cs // // Author: // Joe Shaw (joe@ximian.com) // // (C) 2001 Ximian, Inc. http://www.ximian.com // using System.Globalization; namespace System { public class NotSupportedException : SystemException { // Constructors public NotSupportedException () : base (Locale.GetText ("Operation is not supported")) { } public NotSupportedException (string message) : base (message) { } public NotSupportedException (string message, Exception inner) : base (message, inner) { } } }