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) { } } }