ExitCodes.ts 335 B

1234567891011121314151617
  1. enum ExitCodes {
  2. OK = 0,
  3. InvalidInput = 400,
  4. FileNotFound = 401,
  5. InvalidFile = 402,
  6. NoAccountFound = 403,
  7. NoAccountSelected = 404,
  8. AccessDenied = 405,
  9. UnexpectedException = 500,
  10. FsOperationFailed = 501,
  11. ApiError = 502,
  12. ExternalInfrastructureError = 503,
  13. ActionCurrentlyUnavailable = 504,
  14. }
  15. export = ExitCodes