File tree Expand file tree Collapse file tree 3 files changed +11
-1
lines changed
Expand file tree Collapse file tree 3 files changed +11
-1
lines changed Original file line number Diff line number Diff line change 1+ ## 0.2.1
2+
3+ - Overrides ` toString ` for ` CloudException ` types.
4+
15## 0.2.0
26
37- Bumps minimum Dart SDK to 3.3
Original file line number Diff line number Diff line change @@ -15,6 +15,9 @@ class BadRequestException implements CloudException {
1515
1616 @override
1717 final String message;
18+
19+ @override
20+ String toString () => 'BadRequestException: $message ' ;
1821}
1922
2023/// {@template celest_core.exception.internal_server_exception}
@@ -29,4 +32,7 @@ class InternalServerException implements CloudException {
2932
3033 @override
3134 final String message;
35+
36+ @override
37+ String toString () => 'InternalServerException: $message ' ;
3238}
Original file line number Diff line number Diff line change 11name : celest_core
22description : Celest types and utilities shared between the client and the cloud.
3- version : 0.2.0
3+ version : 0.2.1
44homepage : https://celest.dev
55repository : https://github.com/celest-dev/celest/tree/main/packages/celest_core
66
You can’t perform that action at this time.
0 commit comments