Files
PURErat-crack-scode/decompiled/Libraries/microsoft.codeanalysis/Microsoft.CodeAnalysis.CodeGen/PermissionSetFileReadException.cs
T

19 lines
336 B
C#
Raw Normal View History

2026-08-27 10:56:38 -06:00
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;
}
}