UNPKG

@mui/x-data-grid

Version:

The Community plan edition of the MUI X Data Grid components.

32 lines (28 loc) 657 B
export class GridGetRowsError extends Error { /** * The parameters used in the failed request */ /** * The original error that caused this error */ constructor(options) { super(options.message); this.name = 'GridGetRowsError'; this.params = options.params; this.cause = options.cause; } } export class GridUpdateRowError extends Error { /** * The parameters used in the failed request */ /** * The original error that caused this error */ constructor(options) { super(options.message); this.name = 'GridUpdateRowError'; this.params = options.params; this.cause = options.cause; } }