OF-DL/OF DL/Exceptions/MissingFileException.cs

7 lines
176 B
C#

namespace OF_DL.Exceptions;
public class MissingFileException(string filename) : Exception("File missing: " + filename)
{
public string Filename { get; } = filename;
}