6 lines
175 B
C#
6 lines
175 B
C#
namespace NodePipeline.Configuration.Yaml.Exceptions;
|
|
|
|
public class YamlFileIsEmptyException(string? fileName) : Exception
|
|
{
|
|
public string? FileName { get; } = fileName;
|
|
} |