mirror of https://gitee.com/bigwinds/arangodb
Merge branch 'devel' of https://github.com/arangodb/arangodb into devel
This commit is contained in:
commit
3b70cbf6c5
|
@ -667,7 +667,8 @@ var bindEdgeCollections = function (self, edgeCollections) {
|
||||||
var err = new ArangoError();
|
var err = new ArangoError();
|
||||||
err.errorNum = arangodb.errors.ERROR_GRAPH_INVALID_EDGE.code;
|
err.errorNum = arangodb.errors.ERROR_GRAPH_INVALID_EDGE.code;
|
||||||
err.errorMessage =
|
err.errorMessage =
|
||||||
arangodb.errors.ERROR_GRAPH_INVALID_EDGE.message + ' between ' + from + ' and ' + to + '.';
|
arangodb.errors.ERROR_GRAPH_INVALID_EDGE.message +
|
||||||
|
' between ' + from + ' and ' + to + '. Doesn\'t conform to any edge definition';
|
||||||
throw err;
|
throw err;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue