mirror of
https://github.com/AssetRipper/AssetRipper.git
synced 2025-12-11 20:15:29 +01:00
9 lines
211 B
C#
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")
|
|
{
|
|
}
|
|
}
|