hexo/node_modules/warehouse/lib/error/population.js

10 lines
196 B
JavaScript
Raw Normal View History

2023-09-25 15:58:56 +08:00
'use strict';
const WarehouseError = require('../error');
class PopulationError extends WarehouseError {}
PopulationError.prototype.name = 'PopulationError';
module.exports = PopulationError;