-
Notifications
You must be signed in to change notification settings - Fork 673
SMQ-1744 - Add new error and new error types #3169
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
arvindh123
wants to merge
6
commits into
absmach:main
Choose a base branch
from
arvindh123:error_handling
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
1c3d277
add new error and new error types
arvindh123 451e238
add new error and new error types
arvindh123 f0b1499
remove unwanted
arvindh123 9e5f73f
remove debug logs
arvindh123 be07061
sync with certs
arvindh123 060db08
add license headers
arvindh123 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,138 @@ | ||
| // Copyright (c) Abstract Machines | ||
| // SPDX-License-Identifier: Apache-2.0 | ||
|
|
||
| package errors | ||
|
|
||
| import ( | ||
| "encoding/json" | ||
| "errors" | ||
| ) | ||
|
|
||
| type NewError interface { | ||
| // Error implements the error interface. | ||
| Error() string | ||
|
|
||
| // Msg returns error message. | ||
| Msg() string | ||
|
|
||
| // Err returns wrapped error. | ||
| Unwrap() error | ||
|
|
||
| Wrap(e error) error | ||
|
|
||
| // MarshalJSON returns a marshaled error. | ||
| MarshalJSON() ([]byte, error) | ||
| } | ||
|
|
||
| // NewError specifies an that request could be processed and error which should be addressed by user. | ||
| type newError struct { | ||
| Err error // Contains other internal details and errors as wrapped error | ||
| Message string // Message for end users returned by API layer or other end layer | ||
| } | ||
|
|
||
| func (e newError) Error() string { | ||
| if e.Err == nil { | ||
| return e.Message | ||
| } | ||
| return e.Message + " : " + e.Err.Error() | ||
| } | ||
|
|
||
| func (e newError) Unwrap() error { | ||
| return e.Err | ||
| } | ||
|
|
||
| func (e newError) Msg() string { | ||
| return e.Message | ||
| } | ||
|
|
||
| func (e newError) MarshalJSON() ([]byte, error) { | ||
| return json.Marshal(&struct { | ||
| Err string `json:"error"` | ||
| }{ | ||
| Err: e.Message, | ||
| }) | ||
| } | ||
|
|
||
| var _ NewError = (*RequestError)(nil) | ||
|
|
||
| type RequestError struct { | ||
| newError | ||
| } | ||
|
|
||
| func (e RequestError) Wrap(err error) error { | ||
| e.Err = errors.Join(err, e.Err) | ||
| return e | ||
| } | ||
|
|
||
| func NewRequestError(message string) error { | ||
| return RequestError{ | ||
| newError: newError{ | ||
| Message: message, | ||
| }, | ||
| } | ||
| } | ||
|
|
||
| func NewRequestErrorWithErr(message string, err error) error { | ||
| return RequestError{ | ||
| newError: newError{ | ||
| Message: message, | ||
| Err: err, | ||
| }, | ||
| } | ||
| } | ||
|
|
||
| var _ NewError = (*AuthNError)(nil) | ||
|
|
||
| type AuthNError struct { | ||
| newError | ||
| } | ||
|
|
||
| func (e AuthNError) Wrap(err error) error { | ||
| e.Err = errors.Join(err, e.Err) | ||
| return e | ||
| } | ||
|
|
||
| func NewAuthNError(message string) error { | ||
| return AuthNError{ | ||
| newError: newError{ | ||
| Message: message, | ||
| }, | ||
| } | ||
| } | ||
|
|
||
| func NewAuthNErrorWithErr(message string, err error) error { | ||
| return AuthNError{ | ||
| newError: newError{ | ||
| Message: message, | ||
| Err: err, | ||
| }, | ||
| } | ||
| } | ||
|
|
||
| var _ NewError = (*AuthZError)(nil) | ||
|
|
||
| type AuthZError struct { | ||
| newError | ||
| } | ||
|
|
||
| func (e AuthZError) Wrap(err error) error { | ||
| e.Err = errors.Join(err, e.Err) | ||
| return e | ||
| } | ||
|
|
||
| func NewAuthZError(message string) error { | ||
| return AuthZError{ | ||
| newError: newError{ | ||
| Message: message, | ||
| }, | ||
| } | ||
| } | ||
|
|
||
| func NewAuthZErrorWithErr(message string, err error) error { | ||
| return AuthZError{ | ||
| newError: newError{ | ||
| Message: message, | ||
| Err: err, | ||
| }, | ||
| } | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,14 @@ | ||
| // Copyright (c) Abstract Machines | ||
| // SPDX-License-Identifier: Apache-2.0 | ||
|
|
||
| package errors | ||
|
|
||
| type Mapper interface { | ||
| GetError(key string) (error, bool) | ||
| } | ||
|
|
||
| type Handler interface { | ||
| HandleError(wrapper, err error) error | ||
| } | ||
|
|
||
| type HandlerOption func(*Handler) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Will this type switch replace the big switch case defined below?