2024-05-29 11:51:04 -04:00

10 lines
130 B
JavaScript

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