Adding test for encrypted cloud storage; Adding preparation timing test for Fidelius...
[iotcloud.git] / version2 / src / java / iotcloud / ServerException.java
index b09096c8ba07ee6339211e7165dbc3cf2f126dde..1705c70375fa5a4b25117fc10d492c683ec42518 100644 (file)
@@ -4,7 +4,8 @@ public class ServerException extends Exception {
 
     public static final byte TypeConnectTimeout = 1;
     public static final byte TypeInputTimeout = 2;
-    public static final byte TypeIncorrectResponseCode = 2;
+    public static final byte TypeIncorrectResponseCode = 3;
+    public static final byte TypeSalt = 4;
     private byte type = -1;
 
     public ServerException(String message, byte _type) {