KOP_Library_v5/ViewComponents/Exeption/TextBoundsNotSetExeption.cs

19 lines
609 B
C#

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) { }
}
}