17 lines
536 B
C#
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) { }
|
|||
|
}
|
|||
|
}
|