blob: efa9b58eb80d2e90f23f146584fc4d8fc143abbc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
//! Filesystem errors
pub const FsError = error{
NotFound,
InvalidLocation,
NotAStack,
NotAUnit,
StackNotEmpty,
AlreadyExists,
NoSpace,
ReadOnly,
DiskError,
Corrupted,
CannotCreate,
};
|