19 lines
604 B
C#
19 lines
604 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 TextOutOfBoundsExeption: ApplicationException
|
|
{
|
|
public TextOutOfBoundsExeption() : base() { }
|
|
public TextOutOfBoundsExeption(string message) : base(message) { }
|
|
public TextOutOfBoundsExeption(string message, Exception exception) : base(message, exception) { }
|
|
protected TextOutOfBoundsExeption(SerializationInfo info, StreamingContext contex) : base(info, contex) { }
|
|
}
|
|
}
|