3 instantiations of ChannelNotFoundException
aspire (3)
Commands\InitCommand.cs (1)
716
throw new
ChannelNotFoundException
($"No channel found matching '{channelName}'. Valid options are: {string.Join(", ", allChannels.Select(c => c.Name))}");
Commands\UpdateCommand.cs (1)
161
?? throw new
ChannelNotFoundException
($"No channel found matching '{channelName}'. Valid options are: {string.Join(", ", allChannels.Select(c => c.Name))}");
Templating\DotNetTemplateFactory.cs (1)
565
throw new Exceptions.
ChannelNotFoundException
($"No channel found matching '{channelName}'. Valid options are: {string.Join(", ", allChannels.Select(c => c.Name))}");
2 references to ChannelNotFoundException
aspire (2)
Commands\UpdateCommand.cs (1)
224
catch (
ChannelNotFoundException
ex)
Templating\DotNetTemplateFactory.cs (1)
509
catch (Exceptions.
ChannelNotFoundException
ex)