@azure/storage-file-datalake
Version:
Microsoft Azure Storage SDK for JavaScript - DataLake
21 lines • 659 B
JavaScript
/**
* An error thrown when an operation is interrupted and can be continued later on.
*/
export 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);
}
}
//# sourceMappingURL=DataLakeAclChangeFailedError.js.map