#error #show #errno #errlook

app error_show

显示错误代码信息

4 个版本

0.1.3 2023年12月28日
0.1.2 2020年9月2日
0.1.1 2020年8月5日
0.1.0 2020年8月3日

命令行工具中排名第402

MIT 许可协议

9KB
151 代码行

error_show

一个显示错误代码描述的工具。

安装

cargo install error_show

用法

> error_show -h
error_show 0.1.2
Show error code information

USAGE:
    error_show [FLAGS] <errno>

FLAGS:
    -h, --help        Prints help information
    -n, --ntstatus    Is this an ntstatus code on windows?
    -V, --version     Prints version information

ARGS:
    <errno>    Decimal or hexadecimal error code

示例

在Windows上(支持NTSTATUS、HRESULT和WININET错误代码)

> error_show 0xC0000005
Error(0xC0000005): Unknown.

> error_show -n 0xC0000005
Error(0xC0000005): Invalid access to memory location.

> error_show 2
Error(2): The system cannot find the file specified.

> error_show -n 2
Error(2): ERROR_WAIT_2

> error_show 12006
Error(12006): The URL does not use a recognized protocol

> error_show 0x80004002
Error(0x80004002): No such interface supported

> error_show -2147467262
Error(-2147467262): No such interface supported

在Linux或macOS上

% error_show 12
Error(12): Cannot allocate memory

依赖项

约2.4–3.5MB
约57K SLoC