12 lines
183 B
C#
12 lines
183 B
C#
using System;
|
|
|
|
namespace AxCopilot.Services;
|
|
|
|
public class ToolCallNotSupportedException : Exception
|
|
{
|
|
public ToolCallNotSupportedException(string message)
|
|
: base(message)
|
|
{
|
|
}
|
|
}
|