1 implementation of Exception
Aspire.Hosting (1)
ApplicationModel\ExecutionConfigurationResult.cs (1)
30
public Exception?
Exception
{ get; init; }
11 references to Exception
Aspire.Hosting (7)
ApplicationModel\IExecutionConfigurationBuilder.cs (1)
26
/// <returns>The resource configuration result. Any exceptions that occurred while processing are available via the <see cref="IExecutionConfigurationResult.
Exception
"/> property.</returns>
Dcp\DcpExecutor.cs (2)
1871
if (configuration.
Exception
is not null)
2347
if (failedToApplyRunArgs || configuration.
Exception
is not null)
Publishing\ManifestPublishingContext.cs (4)
539
if (executionConfiguration.
Exception
is not null)
541
ExceptionDispatchInfo.Throw(executionConfiguration.
Exception
);
577
if (executionConfiguration.
Exception
is not null)
579
ExceptionDispatchInfo.Throw(executionConfiguration.
Exception
);
Aspire.Hosting.Tests (4)
Utils\ArgumentEvaluator.cs (2)
24
if (executionConfiguration.
Exception
is not null)
26
ExceptionDispatchInfo.Throw(executionConfiguration.
Exception
);
Utils\EnvironmentVariableEvaluator.cs (2)
25
if (executionConfiguration.
Exception
is not null)
27
ExceptionDispatchInfo.Throw(executionConfiguration.
Exception
);