the checklist of things to do is continuing to dwindle. hooray. last big feature push is help text generation. Then improving error reporting. Then writing some tests. Then writing documentation. Ay carumba.
17 lines
343 B
Zig
17 lines
343 B
Zig
pub const ConversionError = error {
|
|
ConversionFailed,
|
|
};
|
|
|
|
pub const ParseError = error{
|
|
UnexpectedFailure,
|
|
EmptyArgs,
|
|
MissingValue,
|
|
ExtraValue,
|
|
FusedShortTagValueMissing,
|
|
UnknownLongTagParameter,
|
|
UnknownShortTagParameter,
|
|
RequiredParameterMissing,
|
|
};
|
|
|
|
pub const NoclipError = ParseError || ConversionError;
|