mirror of https://github.com/jkjoy/sunpeiwen.git
10 lines
196 B
JavaScript
10 lines
196 B
JavaScript
|
'use strict';
|
||
|
|
||
|
const WarehouseError = require('../error');
|
||
|
|
||
|
class PopulationError extends WarehouseError {}
|
||
|
|
||
|
PopulationError.prototype.name = 'PopulationError';
|
||
|
|
||
|
module.exports = PopulationError;
|