Skip to content

Commit 282caa0

Browse files
authored
Merge pull request #75 from mvanroon/master
2 parents 2ffdd03 + b019b10 commit 282caa0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/email-exception.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
export class EmailException extends Error {
2-
constructor(message) {
3-
super(message);
2+
constructor(...params) {
3+
super(...params)
44
this.name = 'EmailException';
55
}
66
}

0 commit comments

Comments
 (0)