@itwin/presentation-hierarchies
Version:
A package for creating hierarchies based on data in iTwin.js iModels.
20 lines • 826 B
JavaScript
;
/*---------------------------------------------------------------------------------------------
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
* See LICENSE.md in the project root for license terms and full copyright notice.
*--------------------------------------------------------------------------------------------*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.RowsLimitExceededError = void 0;
/**
* Error that is thrown when rows amount exceed hierarchy level limit.
* @public
*/
class RowsLimitExceededError extends Error {
limit;
constructor(limit) {
super(`Query rows limit of ${limit} exceeded`);
this.limit = limit;
}
}
exports.RowsLimitExceededError = RowsLimitExceededError;
//# sourceMappingURL=HierarchyErrors.js.map