import { IDuplicateException } from "./duplicate_exception"; /** * An exception that occurs when adding a key to a user that is assigned to another * user. * * @deprecated */ export interface IDuplicateKeyException extends IDuplicateException { /** Gets the message of the exception. */ message: string; } //# sourceMappingURL=duplicate_key_exception.d.ts.map