2023-10-06 00:52:09 +04:00

19 lines
633 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
using System.Text;
using System.Threading.Tasks;
namespace NevaevaLibrary.Exceptions
{
[Serializable]
public class EmptySymbolsException : ApplicationException
{
public EmptySymbolsException() : base() { }
public EmptySymbolsException(string message) : base(message) { }
public EmptySymbolsException(string message, Exception exception) : base(message, exception) { }
protected EmptySymbolsException(SerializationInfo info, StreamingContext contex) : base(info, contex) { }
}
}