Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8082277
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T17:02:15+00:00 2026-06-05T17:02:15+00:00

Chrome’s console reports an error. It lists the name of a function — presumably,

  • 0

Chrome’s console reports an error.

It lists the name of a function — presumably, the one where an error is happening.

It doesn’t break. It doesn’t tell me any further details. I can’t make it break with the “Pause on Exceptions” button.

Is there some step that I’m missing for what to do with this error? What does Chrome intend for me to do? This is a frequently-called function, so narrowing it down on the particular use case is a fickle problem.

“It doesn’t actually help any more than that” is a perfectly acceptable answer. I just wanted that confirmed or refuted as I continue to battle with this cryptic console output.

This is the expanded "<error>" message. ResolveRests is my function.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-05T17:02:17+00:00Added an answer on June 5, 2026 at 5:02 pm

    While in most cases the answer would be to break on exceptions, as I showed in my previous answer, that appears to not be the case here.

    The problem is likely caused by some code which causes generating a stack trace to fail. Here’s a portion of the relevant code in V8:

    function FormatStackTrace(error, frames) {
      var lines = [];
      try {
        lines.push(error.toString());
      } catch (e) {
        try {
          lines.push("<error: " + e + ">");
        } catch (ee) {
          lines.push("<error>");
        }
      }
      for (var i = 0; i < frames.length; i++) {
        var frame = frames[i];
        var line;
        try {
          line = frame.toString();
        } catch (e) {
          try {
            line = "<error: " + e + ">";
          } catch (ee) {
            // Any code that reaches this point is seriously nasty!
            line = "<error>";
          }
        }
        lines.push("    at " + line);
      }
      return lines.join("\n");
    }
    

    As you can see, you will get <error> if it fails to get a string representation of an uncaught exception or a stack frame, and then when it tries to get the string representation of that, it fails. For example, if you run this code:

    function NastyException() {}
    NastyException.prototype.toString = function() { throw this; };
    throw new NastyException();
    

    Then you’ll get this unhelpful error:

    Uncaught #<error>
    

    Admittedly that’s not quite the error that you were receiving, but it’s not that far off.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

chrome.cookies.get({url:http://www.dahotre.com, name:userid}, function(){}) shows undefined in the console. If I skip the optional empty
In Chrome, when I type console.log in the one below: console.log(A parameter, A parameter,
Chrome display this error in console Unsafe JavaScript attempt to access frame with URL
Google Chrome and Firefox deduces the response from the server without problems why doesn't
chrome.tabs.executeScript(null, {code:$.each(selectValues, function(key=' + timestamp + ', value='Custom') { $('#expire'). append($(\<option></option>\). attr(\value\,key). text(value)); });});
In Chrome's developer tools, is it possible to delete a function and re-write it?
chrome.bookmarks.create({parentId: nodeId, title: title},function(bmNode) { chrome.windows.getCurrent(function(window) { chrome.tabs.getAllInWindow(window.id, function(tabs) { for(var i=0; i<tabs.length; i++)
Chrome Developer Tools command console provides a handy command : copy() . From example,
My chrome auto update to V19.0.1084.46 m;and I got a horrible problem! 1.zetop('#id').css({'-webkit-animation-name':'pop'}); does
Chrome and Safari doesn't trigger the HTML5 onpopstate event. Here is my example: <!doctype

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.