17 lines
516 B
C#
17 lines
516 B
C#
using System.Runtime.Serialization;
|
|
|
|
namespace RodionovLibrary.Exceptions
|
|
{
|
|
[Serializable]
|
|
public class NullPatternException : ApplicationException
|
|
{
|
|
public NullPatternException() : base() { }
|
|
|
|
public NullPatternException(string message) : base(message) { }
|
|
|
|
public NullPatternException(string message, Exception exception) : base(message, exception) { }
|
|
|
|
protected NullPatternException(SerializationInfo info, StreamingContext contex) : base(info, contex) { }
|
|
}
|
|
}
|