Hacker News new | ask | show | jobs
by politician 5155 days ago
An ellipsis means something unimportant has been elided. For example,

  try {
      foo();
  catch (std::exception &e) {
      handle_exception ();
  }

  int foo () {
      int rc = fx ();
      if (rc != 0)
      throw std::exception ("Error!");
  }