OF-DL/OF DL/Exceptions/MalformedFileException.cs

7 lines
180 B
C#

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