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