export interface ErrorExtended extends Error {
    address: string;
    code: string;
    errno: string;
    message: string;
    port: number;
}