2021-04-09 16:10:21 +02:00

10 lines
134 B
JavaScript

'use strict';
module.exports = class Plugin {
constructor() {
setTimeout(() => {
throw new Error('Stop');
});
}
};