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