Add error kinds for readline errors
This commit is contained in:
parent
33f02fd776
commit
858f310fda
1 changed files with 6 additions and 1 deletions
|
@ -23,7 +23,12 @@ generate_error_module!(
|
|||
CLIError => "Error on commandline",
|
||||
IdMissingError => "Commandline: ID missing",
|
||||
StoreIdParsingError => "Error while parsing StoreId",
|
||||
IdSelectingError => "Error while selecting id"
|
||||
IdSelectingError => "Error while selecting id",
|
||||
ConfigError => "Configuration error",
|
||||
ConfigMissingError => "Configuration missing",
|
||||
ConfigTypeError => "Config Type Error",
|
||||
NoConfigError => "No configuration",
|
||||
ReadlineError => "Readline error"
|
||||
);
|
||||
);
|
||||
|
||||
|
|
Loading…
Reference in a new issue