/** @packageDocumentation * @module Quantity */ import { BentleyError } from "@itwin/core-bentley"; /** * Status codes used during Quantity parsing and formatting processing. * @beta */ export declare enum QuantityStatus { QUANTITY_ERROR_BASE = 35039, Success = 0, InvalidJson = 35040, InvalidCompositeFormat = 35041, UnableToGenerateParseTokens = 35042, NoValueOrUnitFoundInString = 35043, UnitLabelSuppliedButNotMatched = 35044, UnknownUnit = 35045, UnableToConvertParseTokensToQuantity = 35046, UnsupportedUnit = 35047, MissingRequiredProperty = 35048, InvertingZero = 35049, InvalidUnitConversion = 35050 } /** The error type thrown by this module. See [[QuantityStatus]] for `errorNumber` values. * @beta */ export declare class QuantityError extends BentleyError { readonly errorNumber: number; constructor(errorNumber: number, message?: string); } //# sourceMappingURL=Exception.d.ts.map