UNPKG

pagamio-frontend-commons-lib

Version:

Pagamio library for Frontend reusable components like the form engine and table container

11 lines (10 loc) 221 B
export class ApiError extends Error { status; data; constructor(message, status, data) { super(message); this.name = 'ApiError'; this.status = status; this.data = data; } }