constructor()

in lib/eventstream_rpc.ts [172:183]


    constructor(model: RpcErrorModel) {
        super(model.description);

        this.type = model.type;
        this.description = model.description;
        if (model.internalError) {
            this.internalError = model.internalError;
        }
        if (model.serviceError) {
            this.serviceError = model.serviceError;
        }
    }