PIBD14-BOYKO-M.S.SuperEasyS.../ProjectElectroTrans/Exceptions/EmptyFileExeption.cs

14 lines
663 B
C#
Raw Permalink Normal View History

2024-04-24 23:26:19 +04:00
using System.Runtime.Serialization;
namespace ProjectElectroTrans.Exceptions;
public class EmptyFileExeption : Exception
{
public EmptyFileExeption(string name) : base($"Файл {name} пустой ") { }
public EmptyFileExeption() : base("В хранилище отсутствуют коллекции для сохранения") { }
public EmptyFileExeption(string name, string message) : base(message) { }
public EmptyFileExeption(string name, string message, Exception exception) :
base(message, exception) { }
protected EmptyFileExeption(SerializationInfo info, StreamingContext
contex) : base(info, contex) { }
}