mirror of
https://github.com/AssetRipper/AssetRipper.git
synced 2025-12-11 20:15:29 +01:00
14 lines
258 B
C#
14 lines
258 B
C#
namespace AssetRipper.SerializationLogic
|
|
{
|
|
internal class ResolutionException : Exception
|
|
{
|
|
public ResolutionException()
|
|
{
|
|
}
|
|
|
|
public ResolutionException(IFullNameProvider reference) : base($"Could not resolve {reference.FullName}")
|
|
{
|
|
}
|
|
}
|
|
}
|