UNPKG

@azure/storage-file-datalake

Version:
25 lines 845 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.DataLakeAclChangeFailedError = void 0; /** * An error thrown when an operation is interrupted and can be continued later on. */ class DataLakeAclChangeFailedError extends Error { /** * Continuation token to continue next batch of operations. */ continuationToken; /** * Internal error. */ innerError; constructor(error, continuationToken) { super(error.message); this.name = "DataLakeAclChangeFailedError"; this.innerError = error; this.continuationToken = continuationToken; Object.setPrototypeOf(this, DataLakeAclChangeFailedError.prototype); } } exports.DataLakeAclChangeFailedError = DataLakeAclChangeFailedError; //# sourceMappingURL=DataLakeAclChangeFailedError.js.map