From 67901f8241c7c9f69e8e01e048dffd88f153e6a5 Mon Sep 17 00:00:00 2001 From: Maciek Misztal Date: Wed, 16 Oct 2024 12:35:02 +0200 Subject: [PATCH 1/3] feat(#203): RunException access modifier set to public. Docs updated --- sdk/Pulumi/Exceptions/RunException.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/sdk/Pulumi/Exceptions/RunException.cs b/sdk/Pulumi/Exceptions/RunException.cs index 173efb6d..ff790833 100644 --- a/sdk/Pulumi/Exceptions/RunException.cs +++ b/sdk/Pulumi/Exceptions/RunException.cs @@ -8,11 +8,12 @@ namespace Pulumi /// /// RunException can be used for terminating a program abruptly, but resulting in a clean exit /// rather than the usual verbose unhandled error logic which emits the source program text and - /// complete stack trace. This type should be rarely used. Ideally should always be used so that as many errors as possible can be /// associated with a Resource. /// - internal class RunException : Exception + public class RunException : Exception { public RunException(string message) : base(message) From e93cefebc64d4f1959af7618e28a79339bd22381 Mon Sep 17 00:00:00 2001 From: Maciek Misztal Date: Wed, 16 Oct 2024 12:40:40 +0200 Subject: [PATCH 2/3] chore: changelog updated --- .changes/unreleased/Improvements-364.yaml | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .changes/unreleased/Improvements-364.yaml diff --git a/.changes/unreleased/Improvements-364.yaml b/.changes/unreleased/Improvements-364.yaml new file mode 100644 index 00000000..333ad60e --- /dev/null +++ b/.changes/unreleased/Improvements-364.yaml @@ -0,0 +1,6 @@ +component: sdk +kind: Improvements +body: Pulumi.RunException is public +time: 2024-10-16T12:40:31.206421+02:00 +custom: + PR: "364" From 2dbf0f453564434f8aa7b5f504f9766b558dedb8 Mon Sep 17 00:00:00 2001 From: Maciek Misztal Date: Wed, 16 Oct 2024 15:08:50 +0200 Subject: [PATCH 3/3] Update .changes/unreleased/Improvements-364.yaml Co-authored-by: Thomas Gummerer --- .changes/unreleased/Improvements-364.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.changes/unreleased/Improvements-364.yaml b/.changes/unreleased/Improvements-364.yaml index 333ad60e..a8922ca0 100644 --- a/.changes/unreleased/Improvements-364.yaml +++ b/.changes/unreleased/Improvements-364.yaml @@ -1,6 +1,6 @@ component: sdk kind: Improvements -body: Pulumi.RunException is public +body: Make Pulumi.RunException public time: 2024-10-16T12:40:31.206421+02:00 custom: PR: "364"