1
0
Fork 0

Merge branch 'devel' of https://github.com/arangodb/arangodb into devel

This commit is contained in:
jsteemann 2016-09-01 15:25:44 +02:00
commit 3b70cbf6c5
1 changed files with 2 additions and 1 deletions

View File

@ -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;
} }
} }