-
Notifications
You must be signed in to change notification settings - Fork 0
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
Add ErrorContextBuilder #38
Comments
Can the entry point be something like |
e.g. in default ErrorContextBuilder builder() {
return new ErrorContextBuilder();
} |
Alternatively, we could create a method in e.g. |
Because there is builder in the name, use the newInstance() version |
* Add ErrorContextBuilder for building ErrorContext objects * Change ApplicationErrorJdbc#dataStoreTypeOf to use the isH2DataStore method since it does the exact same thing that this method was doing (i.e. make it DRY) * Add dataStoreType arg to ErrorContextUtilities#checkCommonArguments * Update Jdbi3ErrorContext to supply dataStoreType to call to checkCommonArguments * Fix TODOs in Javadocs in ApplicationError and ErrorContext Fixes #38
* Add ErrorContextBuilder * Add ErrorContextBuilder for building ErrorContext objects * Change ApplicationErrorJdbc#dataStoreTypeOf to use the isH2DataStore method since it does the exact same thing that this method was doing (i.e. make it DRY) * Add dataStoreType arg to ErrorContextUtilities#checkCommonArguments * Update Jdbi3ErrorContext to supply dataStoreType to call to checkCommonArguments * Fix TODOs in Javadocs in ApplicationError and ErrorContext Fixes #38 * Add verification that the health check was NOT registered
This class is a builder for
ErrorContext
instances.This issue depends on completion of:
The text was updated successfully, but these errors were encountered: