error-codes.js 186 Bytes
Newer Older
Chok's avatar
Chok committed
1
2
3
4
5
6
7
8
9
10
module.exports = {
  GENERIC: -1,
  SSL_EXCEPTION: -2,
  SERVER_NOT_FOUND: -3,
  TIMEOUT: -4,
  UNSUPPORTED_URL: -5,
  NOT_CONNECTED: -6,
  POST_PROCESSING_FAILED: -7,
  ABORTED: -8,
};