DozorovaA.A 6be3584202 logging
2022-11-13 15:50:05 +04:00

18 lines
585 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
using System.Text;
using System.Threading.Tasks;
namespace ArmoredVehicle
{
internal class LoadFileException : ApplicationException
{
public LoadFileException() : base() { }
public LoadFileException(string message) : base(message) { }
public LoadFileException(string message, Exception exception) : base(message, exception) { }
protected LoadFileException(SerializationInfo info, StreamingContext contex) : base(info, contex) { }
}
}