* Returns a human-readable identifier for this module. * @abstract * @param {RequestShortener} requestShortener the request shortener * @returns {string} a user readable identifier of the module
(requestShortener)
| 1014 | * @returns {string} a user readable identifier of the module |
| 1015 | */ |
| 1016 | readableIdentifier(requestShortener) { |
| 1017 | const AbstractMethodError = require("./errors/AbstractMethodError"); |
| 1018 | |
| 1019 | throw new AbstractMethodError(); |
| 1020 | } |
| 1021 | |
| 1022 | /* istanbul ignore next */ |
| 1023 | /** |
no test coverage detected