Skip to content

Commit

Permalink
이슈 8794 처리
Browse files Browse the repository at this point in the history
  • Loading branch information
usbsync committed Oct 21, 2024
1 parent 56a8861 commit 241b090
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/util/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -2108,8 +2108,9 @@ Entry.Utils.stopProjectWithToast = _throttle(
}

if (error) {
error.message = `${message}: ${error.message}`;
throw error;
const newError = new Error(`${message}: ${error.message}`);
newError.stack = error.stack;
throw newError;
}

throw new Error(message);
Expand Down

0 comments on commit 241b090

Please sign in to comment.