Files
xen-orchestra/@xen-orchestra/backups/_runners/_RemoteTimeoutError.js

9 lines
221 B
JavaScript

'use strict'
class RemoteTimeoutError extends Error {
constructor(remoteId) {
super('timeout while getting the remote ' + remoteId)
this.remoteId = remoteId
}
}
exports.RemoteTimeoutError = RemoteTimeoutError