/** * Module containing all errors in this package. * * @module */ /** All errors in this package. */ export declare const errmap: { readonly error_categories: {}; readonly module_error_maps: { readonly "0x1::acl": { readonly "0": { readonly name: "ECONTAIN"; readonly doc: "The ACL already contains the address."; }; readonly "1": { readonly name: "ENOT_CONTAIN"; readonly doc: "The ACL does not contain the address."; }; }; readonly "0x1::bit_vector": { readonly "131072": { readonly name: "EINDEX"; readonly doc: "The provided index is out of bounds"; }; readonly "131073": { readonly name: "ELENGTH"; readonly doc: "An invalid length of bitvector was given"; }; }; readonly "0x1::fixed_point32": { readonly "65537": { readonly name: "EDENOMINATOR"; readonly doc: "The denominator provided was zero"; }; readonly "65540": { readonly name: "EDIVISION_BY_ZERO"; readonly doc: "A division by zero was encountered"; }; readonly "131074": { readonly name: "EDIVISION"; readonly doc: "The quotient value would be too large to be held in a `u64`"; }; readonly "131075": { readonly name: "EMULTIPLICATION"; readonly doc: "The multiplied value would be too large to be held in a `u64`"; }; readonly "131077": { readonly name: "ERATIO_OUT_OF_RANGE"; readonly doc: "The computed ratio when converting to a `FixedPoint32` would be unrepresentable"; }; }; readonly "0x1::option": { readonly "262144": { readonly name: "EOPTION_IS_SET"; readonly doc: "The `Option` is in an invalid state for the operation attempted.\nThe `Option` is `Some` while it should be `None`."; }; readonly "262145": { readonly name: "EOPTION_NOT_SET"; readonly doc: "The `Option` is in an invalid state for the operation attempted.\nThe `Option` is `None` while it should be `Some`."; }; }; readonly "0x1::string": { readonly "1": { readonly name: "EINVALID_UTF8"; readonly doc: "An invalid UTF8 encoding."; }; readonly "2": { readonly name: "EINVALID_INDEX"; readonly doc: "Index out of range."; }; }; readonly "0x1::vector": { readonly "131072": { readonly name: "EINDEX_OUT_OF_BOUNDS"; readonly doc: "The index into the vector is out of bounds"; }; }; }; }; //# sourceMappingURL=errmap.d.ts.map