PIbd-31_Rodionov.I.A._COP_28/COP/RodionovLibrary/Exceptions/NotMatchPatternException.cs
2024-09-05 23:36:10 +04:00

17 lines
536 B
C#

using System.Runtime.Serialization;
namespace RodionovLibrary.Exceptions
{
[Serializable]
public class NotMatchPatternException : ApplicationException
{
public NotMatchPatternException() : base() { }
public NotMatchPatternException(string message) : base(message) { }
public NotMatchPatternException(string message, Exception exception) : base(message, exception) { }
protected NotMatchPatternException(SerializationInfo info, StreamingContext contex) : base(info, contex) { }
}
}