1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
//! Error surface for the `groups` module.
//!
//! Wraps the core `GroupError` and adds SDK-level variants
//! (`NotReady`, `FactoryNotFound`) that the wrappers surface
//! before touching the core. TS / Python / Go bindings dispatch
//! on these via the same `daemon: group: <kind>[: detail]` prefix
//! pattern used for migration errors.
use Error;
use GroupError as CoreGroupError;
use crateDaemonError;
/// Errors returned by the SDK's group wrappers.