forked from sim0n00ps/OF-DL
7 lines
180 B
C#
7 lines
180 B
C#
namespace OF_DL.Exceptions;
|
|
|
|
public class MalformedFileException(string filename) : Exception("File malformed: " + filename)
|
|
{
|
|
public string Filename { get; } = filename;
|
|
}
|