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)
1714
if (configuration.
Exception
is not null)
2116
if (failedToApplyRunArgs || configuration.
Exception
is not null)
Publishing\ManifestPublishingContext.cs (4)
536
if (executionConfiguration.
Exception
is not null)
538
ExceptionDispatchInfo.Throw(executionConfiguration.
Exception
);
574
if (executionConfiguration.
Exception
is not null)
576
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
);