/** * An unexpected error was encountered. This may result from programmatic error * and is unlikely to be user recoverable. */ export declare class FatalError extends Error { constructor(message: string); } /** * Indicates that the input entitlements name was not recognized. */ export declare class InvalidEntitlementsError extends Error { constructor(); } /** * Indicates that an attempt has been made to delete an entitlements set that is currently in use by one or * more entitlements sequences. */ export declare class EntitlementsSetInUseError extends Error { constructor(); } /** * Indicates that the input entitlements set name does not exist when applying an entitlements set to a user. */ export declare class EntitlementsSetNotFoundError extends Error { constructor(); } /** * Indicates that the attempt to add a new entitlement set failed because an entitlements set with the same * name already exists. */ export declare class EntitlementsSetAlreadyExistsError extends Error { constructor(); } /** * Indicates that the attempt to add a new entitlement sequence failed because an entitlements sequence * with the same name already exists. */ export declare class EntitlementsSequenceAlreadyExistsError extends Error { constructor(); } /** * Indicates that the input entitlements sequence name does not exists when applying an entitlements sequence * to a user. */ export declare class EntitlementsSequenceNotFoundError extends Error { constructor(); } /** * Returned if an entitlements sequence update is already in progress * when setEntitlementsSequence or removeEntitlementsSequence is attempted. */ export declare class EntitlementsSequenceUpdateInProgressError extends Error { constructor(); } /** * A bulk operations has specified multiple operations for the same user */ export declare class BulkOperationDuplicateUsersError extends Error { constructor(); } /** * Returned if an attempt to update a user's entitlements is made after the * user's entitlements have already been updated to a later version */ export declare class AlreadyUpdatedError extends Error { constructor(); } /** * Returned if the named EntitlementsSet is not modifiable or removable */ export declare class EntitlementsSetImmutableError extends Error { constructor(); } /** * Thrown if an operation invalidly specifies the same entitlement * multiple times. */ export declare class DuplicateEntitlementError extends Error { constructor(); } /** * Returned if an applyExpendableEntitlementsToUser operation would * result in negative expendable entitlements for the user */ export declare class NegativeEntitlementError extends Error { constructor(); } /** * Returned if an applyExpendableEntitlementsToUser operation would * result in an overflowed expendable entitlements for the user */ export declare class OverflowedEntitlementError extends Error { constructor(); }