Skip to content

Make Exception<T> base class non-generic and clean up derived types#701

Merged
lemillermicrosoft merged 2 commits intomicrosoft:mainfrom
stephentoub:baseexception
Apr 27, 2023
Merged

Make Exception<T> base class non-generic and clean up derived types#701
lemillermicrosoft merged 2 commits intomicrosoft:mainfrom
stephentoub:baseexception

Conversation

@stephentoub
Copy link
Member

Motivation and Context

Fixes #573

Description

  • Make the base class non-generic and rename it to SKException
  • Remove unnecessary private ctors from derived types
  • Clean up how messages are generated

Contribution Checklist

@github-actions github-actions bot added .NET Issue or Pull requests regarding .NET code kernel.core labels Apr 27, 2023
@lemillermicrosoft lemillermicrosoft enabled auto-merge (squash) April 27, 2023 19:23
@lemillermicrosoft lemillermicrosoft merged commit de00797 into microsoft:main Apr 27, 2023
/// <param name="message">A string that describes the error.</param>
/// <param name="detail">A string that provides additional details about the error.</param>
public AIException(ErrorCodes errorCode, string? message, string? detail)
: this(errorCode, message, detail: null, innerException: null)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Whoops, missed this.

lemillermicrosoft added a commit that referenced this pull request Apr 28, 2023
The AIException constructor that takes an errorCode, a message, and a
detail was incorrectly passing null as the detail parameter to the base
constructor. This commit fixes this bug by passing the detail parameter
correctly. This ensures that the detail information is preserved and
available for error handling.

### Motivation and Context
Bug Introduced: #701
Bug Hidden by: #596
dluc pushed a commit that referenced this pull request Apr 29, 2023
…701)

### Motivation and Context

Fixes #573

### Description

- Make the base class non-generic and rename it to SKException
- Remove unnecessary private ctors from derived types
- Clean up how messages are generated
dluc pushed a commit that referenced this pull request Apr 29, 2023
The AIException constructor that takes an errorCode, a message, and a
detail was incorrectly passing null as the detail parameter to the base
constructor. This commit fixes this bug by passing the detail parameter
correctly. This ensures that the detail information is preserved and
available for error handling.

### Motivation and Context
Bug Introduced: #701
Bug Hidden by: #596
dehoward pushed a commit to lemillermicrosoft/semantic-kernel that referenced this pull request Jun 1, 2023
…icrosoft#701)

### Motivation and Context

Fixes microsoft#573

### Description

- Make the base class non-generic and rename it to SKException
- Remove unnecessary private ctors from derived types
- Clean up how messages are generated
dehoward pushed a commit to lemillermicrosoft/semantic-kernel that referenced this pull request Jun 1, 2023
The AIException constructor that takes an errorCode, a message, and a
detail was incorrectly passing null as the detail parameter to the base
constructor. This commit fixes this bug by passing the detail parameter
correctly. This ensures that the detail information is preserved and
available for error handling.

### Motivation and Context
Bug Introduced: microsoft#701
Bug Hidden by: microsoft#596
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

.NET Issue or Pull requests regarding .NET code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Rename Exception<T> and have non-generic base

3 participants