const FileTransferError = function()

in www/FileTransferError.js [26:33]


const FileTransferError = function (code, source, target, status, body, exception) {
    this.code = code || null;
    this.source = source || null;
    this.target = target || null;
    this.http_status = status || null;
    this.body = body || null;
    this.exception = exception || null;
};