ReturnCodes.h 438 Bytes
Newer Older
Kostyleva D.A's avatar
Kostyleva D.A committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
#ifndef RETURN_CODES_H
#define RETURN_CODES_H

//Some useful return codes

  const static int SUCCESS = 0;
  const static int IOEXCEPTION = -1;
  const static int NOTFOUND = -2;
  const static int NULLPOINTER = -3;
  const static int UNKNOWN = -4;
  const static int FAILURE = -5;
  const static int CDEXCEPTION = -6;
  const static int EMPTYCONTAINER = -7;
  const static int NOTDEFINED = -8;
  const static int EXCEPTION = -11;

#endif