Source: vivid/vivid-error.model.js

  1. // @flow
  2. /**
  3. ```
  4. Error: {
  5. description: Represents an operation error
  6. code:
  7. type: string
  8. description: Machine-readable error code
  9. message:
  10. type: string
  11. description: Human-readable error message
  12. hint:
  13. type: string
  14. description: A hint to the user for correcting the error
  15. }
  16. ```
  17. */
  18. export type VividError = {
  19. code: string,
  20. message: string,
  21. hint: string,
  22. };