Make `GrpcError` non-final to allow implementations. (#647)

This commit is contained in:
Moritz 2023-06-22 09:20:18 -04:00 committed by GitHub
parent 36c19af11a
commit 517cde91a6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -1,6 +1,7 @@
## 3.2.3-wip ## 3.2.3-wip
* Add const constructor to `GrpcError` fixing #606. * Add const constructor to `GrpcError` fixing #606.
* Make `GrpcError` non-final to allow implementations.
## 3.2.2 ## 3.2.2

View File

@ -151,7 +151,7 @@ class StatusCode {
} }
} }
final class GrpcError implements Exception { class GrpcError implements Exception {
final int code; final int code;
final String? message; final String? message;
final Object? rawResponse; final Object? rawResponse;