Files
Telegrator/Telegrator.Analyzers/Exceptions.cs
T

13 lines
414 B
C#
Raw Normal View History

2025-07-24 23:19:59 +04:00
namespace Telegrator.Analyzers
{
/// <summary>
/// Exception thrown when a target is not found during code generation.
/// </summary>
internal class TargteterNotFoundException() : Exception() { }
/// <summary>
/// Exception thrown when a base class type is not found during code generation.
/// </summary>
internal class BaseClassTypeNotFoundException() : Exception() { }
}