Jeremy Pritts c152e8e292 Add page for licensed works
* Resolves #937
2023-09-20 01:02:20 -04:00

9 lines
211 B
C#

namespace AssetRipper.GUI.Licensing;
public sealed class LicenseNotFoundException : Exception
{
public LicenseNotFoundException(string fileName) : base($"Could not find license file {fileName}.md")
{
}
}