-
Notifications
You must be signed in to change notification settings - Fork 33
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
adding custom ConjureDefined exception types #1246
base: develop
Are you sure you want to change the base?
Conversation
Generate changelog in
|
@@ -129,6 +130,19 @@ public static SerializableError forException(ServiceException exception) { | |||
return builder.build(); | |||
} | |||
|
|||
public static SerializableError forExceptionWithSerializedArgs(ServiceException exception) { |
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.
We don't necessarily need to reuse the SerializableError
type, it's the serialized form as defined here that we want: https://palantir.github.io/conjure/#/docs/spec/wire?id=_55-conjure-errors
// TODO(pm): copy-paste the ServiceException logic. I don't like extending ServiceException because we have | ||
// (instanceof ServiceException) checks scattered across a few repos. Enumerate them, and see if they need to be | ||
// handled differently compared to ServiceException. | ||
public final class ConjureDefinedError extends ServiceException implements SafeLoggable { |
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.
Shouldn't this be a checked exception? Extending ServiceException
means we're also extending RuntimeException
, which means it's unchecked.
ab72159
to
3a81fad
Compare
Before this PR
After this PR
==COMMIT_MSG==
==COMMIT_MSG==
Possible downsides?