You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. namespace iiie.Logs.DBO
  2. {
  3. /// <summary>
  4. /// Result of an operation
  5. /// </summary>
  6. public enum ResultStatus
  7. {
  8. /// <summary>
  9. /// Operation is successfull
  10. /// </summary>
  11. Success,
  12. /// <summary>
  13. /// User input error
  14. /// </summary>
  15. InputError,
  16. /// <summary>
  17. /// Database error
  18. /// </summary>
  19. DBError,
  20. /// <summary>
  21. /// User is not allowed to do this
  22. /// </summary>
  23. PermissionError,
  24. /// <summary>
  25. /// Bad login/password
  26. /// </summary>
  27. LoginError,
  28. /// <summary>
  29. /// Ressource not found
  30. /// </summary>
  31. NotFound,
  32. /// <summary>
  33. /// Not handled error
  34. /// </summary>
  35. InternalError
  36. }
  37. }