UNPKG

drf-paginator

Version:

Module for consuming paginated Django REST framework endpoints.

11 lines (8 loc) 291 B
export function PaginatorError(message) { this.name = 'PaginatorError'; this.message = message || ''; this.stack = (new Error()).stack; } PaginatorError.prototype = Object.create(Error.prototype); PaginatorError.prototype.constructor = PaginatorError; export default PaginatorError;