19 references to DistributedApplicationException
Aspire.Hosting (5)
Dcp\HostDashboardEndpointProvider.cs (1)
25throw new DistributedApplicationException("Error getting the resource service URL.", ex);
Exceptions.cs (1)
10public FailedToApplyEnvironmentException(string message, Exception inner) : base(message, inner) { }
MissingParameterValueException.cs (1)
33public MissingParameterValueException(string message, Exception innerException) : base(message, innerException)
Publishing\PipelineExecutor.cs (1)
97throw new DistributedApplicationException($"Pipeline execution failed: {ex.Message}", ex);
src\Shared\LaunchProfiles\LaunchSettingsReader.cs (1)
53throw new DistributedApplicationException(ex.Message, ex.InnerException ?? ex);
Aspire.Hosting.Azure (4)
Exceptions.cs (4)
10public AzureCliNotOnPathException(string message, Exception inner) : base(message, inner) { } 17public MissingConfigurationException(string message, Exception inner) : base(message, inner) { } 24public FailedToApplyEnvironmentException(string message, Exception inner) : base(message, inner) { } 29public ProvisioningFailedException(string message, Exception inner) : base(message, inner) { }
Aspire.Hosting.Azure.Functions (1)
src\Shared\LaunchProfiles\LaunchSettingsReader.cs (1)
53throw new DistributedApplicationException(ex.Message, ex.InnerException ?? ex);
Aspire.Hosting.Blazor (2)
BlazorHostedExtensions.cs (2)
229? new DistributedApplicationException(message, result.StartException) 272throw new DistributedApplicationException(
Aspire.Hosting.DevTunnels (2)
DevTunnelCliClient.cs (1)
339throw new DistributedApplicationException($"Failed to parse JSON output into type '{typeof(T).Name}':\n{output}", ex);
DevTunnelResourceBuilderExtensions.cs (1)
154var exception = new DistributedApplicationException($"Error trying to create the dev tunnel resource '{tunnelResource.TunnelId}' this port belongs to: {ex.Message}", ex);
Aspire.Hosting.Dotnet (1)
src\Shared\LaunchProfiles\LaunchSettingsReader.cs (1)
53throw new DistributedApplicationException(ex.Message, ex.InnerException ?? ex);
Aspire.Hosting.Rust (2)
CargoMetadataReader.cs (1)
92throw new DistributedApplicationException(
RustDockerfileGenerator.cs (1)
299throw new DistributedApplicationException(
Aspire.Hosting.Testing (1)
src\Shared\LaunchProfiles\LaunchSettingsReader.cs (1)
53throw new DistributedApplicationException(ex.Message, ex.InnerException ?? ex);
Aspire.Hosting.Yarp (1)
YarpJsonConfigGeneratorBuilder.cs (1)
70throw new DistributedApplicationException($"Error when reading the YARP config file '{_configFilePath}'", ex);