"use strict"; const chain = require("../chain"); module.exports = function rethrowAs(ErrorType, ... args) { return function (error) { throw chain(error, ErrorType, ... args); }; };