We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2ffdd03 + b019b10 commit 282caa0Copy full SHA for 282caa0
src/email-exception.js
@@ -1,6 +1,6 @@
1
export class EmailException extends Error {
2
- constructor(message) {
3
- super(message);
+ constructor(...params) {
+ super(...params)
4
this.name = 'EmailException';
5
}
6
0 commit comments