aba9cf4037
* Added some extensions methods * Refactored Result behaviour * Added missing exception messages * Removed telegrator-specific host builder (obsolete) * Code cleanup and bug fixes
8 lines
363 B
C#
8 lines
363 B
C#
namespace Telegrator.Analyzers.RoslynExtensions;
|
|
|
|
#pragma warning disable RCS1194 // Implement exception constructors
|
|
public class TargteterNotFoundException() : Exception();
|
|
public class BaseClassTypeNotFoundException() : Exception();
|
|
public class AncestorNotFoundException() : Exception();
|
|
#pragma warning restore RCS1194 // Implement exception constructors
|