b1bc25169e
Partially cherry-picked from c3220325a0
Ref #14952
Closes #14993
11 lines
208 B
JavaScript
11 lines
208 B
JavaScript
"use strict";
|
|
var StringMap = require('stringmap');
|
|
|
|
/**
|
|
* @dgService errorNamespaceMap
|
|
* A map of error namespaces by name.
|
|
*/
|
|
module.exports = function errorNamespaceMap() {
|
|
return new StringMap();
|
|
};
|