2022-01-27 15:21:58 +01:00

10 lines
134 B
JavaScript

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