Component-oriented-programming/ComponentLibrary1/limited_text/RangeUndefinedException.cs
Zakharov_Rostislav 3ddd5b0500 feat(lab1): do lab1
task2 is complited

Some refactoring. Created folders for each components

complete task 3 (maybe)

some refactoring

some refactor

some minor fixes

minor changes

minor fixes

minor fixes
2024-09-16 14:26:15 +04:00

19 lines
694 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
using System.Text;
using System.Threading.Tasks;
namespace ComponentLibrary1.limited_text
{
[Serializable]
internal class RangeUndefinedException : ApplicationException
{
public RangeUndefinedException() : base("Диапазон не определен") { }
public RangeUndefinedException(string message) : base(message) { }
public RangeUndefinedException(string message, Exception exception) : base(message, exception) { }
protected RangeUndefinedException(SerializationInfo info, StreamingContext context) : base(info, context) { }
}
}