@azure/storage-file-datalake
Version:
Microsoft Azure Storage SDK for JavaScript - DataLake
25 lines • 845 B
JavaScript
;
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