~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/error.cc

  • Committer: Brian Aker
  • Date: 2011-01-24 06:00:51 UTC
  • mfrom: (2107.1.3 drizzle-build)
  • Revision ID: brian@tangent.org-20110124060051-o8qvrxgw4nwc94nr
Merge in error message number.

Show diffs side-by-side

added added

removed removed

Lines of Context:
204
204
// Constructor sets the default mappings.
205
205
ErrorMap::ErrorMap()
206
206
{
 
207
  ADD_ERROR_MESSAGE(EE_OK, N_("SUCCESS"));
 
208
  ADD_ERROR_MESSAGE(EE_ERROR_FIRST, N_("Error on first"));
207
209
  ADD_ERROR_MESSAGE(ER_NO, N_("NO"));
208
210
  ADD_ERROR_MESSAGE(ER_YES, N_("YES"));
209
211
  ADD_ERROR_MESSAGE(ER_CANT_CREATE_FILE, N_("Can't create file '%-.200s' (errno: %d)"));