edits
[iotcloud.git] / version2 / src / C / Error.h
index 4d12c168febdc7d978c48d293c18f9a1903ceb9e..106ae8ee02b1a6fc942980fd4cc7290bfbeeb1a4 100644 (file)
@@ -6,8 +6,8 @@ public:
 };
 
 class SocketTimeoutException {
- public:
- private:
+public:
+private:
 };
 
 class Exception {
@@ -20,9 +20,9 @@ public:
 #define ServerException_TypeSalt 3
 
 class ServerException {
-public:
- ServerException(const char *msg, char _type) : type(_type) {}
-       char getType();
        char type;
+public:
+       ServerException(const char *msg, char _type) : type(_type) {}
+       char getType() {return type;}
 };
 #endif