~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/error.h

  • Committer: Brian Aker
  • Date: 2011-01-04 18:14:33 UTC
  • mto: (2054.1.1 clean)
  • mto: This revision was merged to the branch mainline in revision 2055.
  • Revision ID: brian@tangent.org-20110104181433-qnrc603tjuly60wl
Cleanup error usage around identifier usage.

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
#include <boost/unordered_map.hpp>
25
25
 
26
26
#include "drizzled/definitions.h"
 
27
#include "drizzled/identifier.h"
27
28
 
28
29
namespace drizzled
29
30
{
77
78
                       const std::string& message);
78
79
#define DRIZZLE_ADD_ERROR_MESSAGE(code, msg) add_error_message(code, STRINGIFY_ARG(code), msg)
79
80
 
 
81
void my_error(drizzled_error_code nr, drizzled::Identifier::const_reference ref);
80
82
void my_error(drizzled_error_code nr);
81
83
void my_error(drizzled_error_code nr, myf MyFlags, ...);
82
84
void my_message(uint32_t my_err, const char *str, myf MyFlags);