2021-02-19 20:43:32 +01:00

10 lines
134 B
JavaScript

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