~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/drizzledump_mysql.cc

  • Committer: Monty Taylor
  • Date: 2010-12-02 00:10:36 UTC
  • mto: (1968.1.2 build)
  • mto: This revision was merged to the branch mainline in revision 1969.
  • Revision ID: mordred@inaugust.com-20101202001036-tnhmv5kxw6v6r1vi
Use std::exception instead of catch(...)

Show diffs side-by-side

added added

removed removed

Lines of Context:
570
570
 
571
571
  result= dcon->query(query);
572
572
  if (result == NULL)
573
 
    throw 1;
 
573
    throw std::exception();
574
574
}
575
575
 
576
576
DrizzleDumpDataMySQL::~DrizzleDumpDataMySQL()