Files
2026-08-27 10:56:38 -06:00

19 lines
336 B
C#

using System;
namespace Microsoft.CodeAnalysis.CodeGen;
internal class PermissionSetFileReadException : Exception
{
private readonly string _file;
public string FileName => _file;
public string PropertyName => "File";
public PermissionSetFileReadException(string message, string file)
: base(message)
{
_file = file;
}
}