11 lines
271 B
C++
11 lines
271 B
C++
#ifndef EXCEPTION_CONSTS_H
|
|
#define EXCEPTION_CONSTS_H
|
|
|
|
static const int EXCEPT_CONNREFUSED = 10;
|
|
static const int EXCEPT_TOOFEWARGS = 15;
|
|
static const int EXCEPT_INVALIDARGS = 20;
|
|
static const int EXCEPT_ADDRNOTAVAIL = 25;
|
|
static const int EXCEPT_INVALIDIP = 30;
|
|
|
|
#endif
|