rescribet/link-lib

View on GitHub
src/processor/ProcessorError.ts

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
export class ProcessorError extends Error {
    public response?: Response;

    constructor(msg: string, response?: Response) {
        super(msg);
        this.response = response;
    }
}