Registry of known foreign error collections Lassi Kortela (27 Jul 2020 07:45 UTC)
Re: Registry of known foreign error collections Lassi Kortela (27 Jul 2020 08:06 UTC)
(missing)
Re: Registry of known foreign error collections Lassi Kortela (27 Jul 2020 12:49 UTC)
Re: Registry of known foreign error collections Arthur A. Gleckler (27 Jul 2020 17:16 UTC)
Re: Registry of known foreign error collections hga@xxxxxx (27 Jul 2020 19:22 UTC)
Re: Registry of known foreign error collections Arthur A. Gleckler (27 Jul 2020 19:33 UTC)
Re: Registry of known foreign error collections hga@xxxxxx (27 Jul 2020 19:45 UTC)
(missing)
Re: Registry of known foreign error collections Lassi Kortela (27 Jul 2020 20:03 UTC)
Re: Registry of known foreign error collections hga@xxxxxx (27 Jul 2020 20:17 UTC)
Re: Registry of known foreign error collections Lassi Kortela (27 Jul 2020 20:31 UTC)
Re: Registry of known foreign error collections Lassi Kortela (27 Jul 2020 19:48 UTC)
Re: Registry of known foreign error collections Lassi Kortela (27 Jul 2020 20:23 UTC)
Re: Registry of known foreign error collections hga@xxxxxx (27 Jul 2020 22:58 UTC)

Re: Registry of known foreign error collections Lassi Kortela 27 Jul 2020 08:06 UTC

> Here are some more:
>
> 'ftp          File Transfer Protocol reply codes
> 'http         Hypertext Transfer Protocol status codes
> 'mysql        MySQL and MariaDB database errors
> 'sqlite       SQLite database result codes

Two more:

'windows      Microsoft Windows API (aka Win32)
'winsock      Microsoft Windows Sockets API

Examples:

(foreign-error:error-set ferr) -> 'windows
(foreign-error:code ferr) -> 7
(foreign-error:symbol ferr) -> 'ERROR_ARENA_TRASHED
(foreign-error:message ferr) -> "The storage control blocks were destroyed"

(foreign-error:error-set ferr) -> 'winsock
(foreign-error:code ferr) -> 11001
(foreign-error:symbol ferr) -> 'WSAHOST_NOT_FOUND
(foreign-error:message ferr) -> "Host not found"