6 lines
168 B
Zig
6 lines
168 B
Zig
/// Contains collection of errors connected with an entity (road, node, car, etc.)
|
|
pub const Entity = error {
|
|
AlreadyReferenced,
|
|
NotFound,
|
|
HasReferences,
|
|
}; |