22 lines
647 B
C#
22 lines
647 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
using System.Runtime.Serialization;
|
|||
|
|
|||
|
namespace Components.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) { }
|
|||
|
}
|
|||
|
}
|