mirror of https://github.com/grpc/grpc-dart.git
Make `GrpcError` non-final to allow implementations. (#647)
This commit is contained in:
parent
36c19af11a
commit
517cde91a6
|
|
@ -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
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue