(opts: {
message: string
embeds?: EmbedBuilder[],
log?: boolean,
})
| 10 | |
| 11 | export class CustomError extends AbstractError { |
| 12 | constructor(opts: { |
| 13 | message: string |
| 14 | embeds?: EmbedBuilder[], |
| 15 | log?: boolean, |
| 16 | }) { |
| 17 | super(); |
| 18 | Object.assign(this, opts); |
| 19 | } |
| 20 | } |
| 21 | |
| 22 | export class QueueLockedError extends AbstractError { |
nothing calls this directly
no outgoing calls
no test coverage detected