using System; using System.Collections.Generic; using System.Linq; using System.Runtime.Serialization; using System.Text; using System.Threading.Tasks; namespace ViewComponents.Exeption { [Serializable] public class TextBoundsNotSetExeption: ApplicationException { public TextBoundsNotSetExeption() : base() { } public TextBoundsNotSetExeption(string message) : base(message) { } public TextBoundsNotSetExeption(string message, Exception exception) : base(message, exception) { } protected TextBoundsNotSetExeption(SerializationInfo info, StreamingContext contex) : base(info, contex) { } } }