namespace XFEExtension.NetCore.ServerInteractive.Exceptions;
///
/// 执行的方法未注册异常
///
public class ExecutionUnregisteredException : ProcessStandardRequestException
{
///
public ExecutionUnregisteredException()
{
}
///
public ExecutionUnregisteredException(string? message) : base(message)
{
}
///
public ExecutionUnregisteredException(string? message, Exception? innerException) : base(message, innerException)
{
}
}