Mainflux.mainflux/pkg/errors
Ian Ngethe Muchiri 031e0a62f2
NOISSUE-Update invalid secret error handling (#1856)
* update invalid secret error handling

Signed-off-by: ianmuchyri <ianmuchiri8@gmail.com>

* update secret error naming

Signed-off-by: ianmuchyri <ianmuchiri8@gmail.com>

* update secretError naming

Signed-off-by: ianmuchyri <ianmuchiri8@gmail.com>

* fix comment

Signed-off-by: ianmuchyri <ianmuchiri8@gmail.com>

* add empty space in comment

Signed-off-by: ianmuchyri <ianmuchiri8@gmail.com>

---------

Signed-off-by: ianmuchyri <ianmuchiri8@gmail.com>
2023-07-12 23:02:59 +02:00
..
README.md Add READMEs to pkg packages (#1352) 2021-02-04 20:04:41 +01:00
doc.go MF-1506 - Group-based Access Control (#1716) 2023-06-14 12:40:37 +02:00
errors.go MF-1506 - Group-based Access Control (#1716) 2023-06-14 12:40:37 +02:00
errors_test.go MF-1506 - Group-based Access Control (#1716) 2023-06-14 12:40:37 +02:00
sdk_errors.go MF-1670 - Improve error handling in SDK (#1674) 2022-12-15 16:24:19 +01:00
types.go NOISSUE-Update invalid secret error handling (#1856) 2023-07-12 23:02:59 +02:00

README.md

Errors

errors package serve to build an arbitrary long error chain in order to capture errors returned from nested service calls.

errors package contains the custom Go error interface implementation, Error. You use the Error interface to wrap two errors in a containing error as well as to test recursively if a given error contains some other error.