Files
AX-Copilot-Codex/.decompiledproj/AxCopilot/Services/ToolCallNotSupportedException.cs

12 lines
183 B
C#

using System;
namespace AxCopilot.Services;
public class ToolCallNotSupportedException : Exception
{
public ToolCallNotSupportedException(string message)
: base(message)
{
}
}