Add in reason if available, to error message
This commit is contained in:
parent
16c8fd0afc
commit
b1cea5edd7
|
@ -11,6 +11,10 @@ class EnigError extends Error {
|
|||
this.reason = reason;
|
||||
this.reasonCode = reasonCode;
|
||||
|
||||
if(this.reason) {
|
||||
this.message += `: ${this.reason}`;
|
||||
}
|
||||
|
||||
if(typeof Error.captureStackTrace === 'function') {
|
||||
Error.captureStackTrace(this, this.constructor);
|
||||
} else {
|
||||
|
|
Loading…
Reference in New Issue