Zakharov_Rostislav
3ddd5b0500
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
19 lines
694 B
C#
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) { }
|
|
}
|
|
}
|