32 lines
600 B
Zig
32 lines
600 B
Zig
pub const ZipponError = error{
|
|
SchemaFileNotFound,
|
|
SchemaNotConform,
|
|
DATAFolderNotFound,
|
|
StructFolderNotFound,
|
|
CantMakeDir,
|
|
CantMakeFile,
|
|
CantOpenDir,
|
|
CantOpenFile,
|
|
StreamError,
|
|
ReadError,
|
|
InvalidUUID,
|
|
InvalidDate,
|
|
InvalidFileIndex,
|
|
DirIterError,
|
|
FileStatError,
|
|
DeleteFileError,
|
|
RenameFileError,
|
|
ZipponDataError,
|
|
AllocEncodError,
|
|
MemoryError,
|
|
SynthaxError,
|
|
ThreadError,
|
|
CantWriteEntity,
|
|
WriteError,
|
|
ConditionError,
|
|
ParsingValueError,
|
|
MemberNotFound,
|
|
MemberMissing,
|
|
StructNotFound,
|
|
};
|