Skip to content

Commit

Permalink
Merge pull request vert-x3#1977 from MeYoGui/issue/1966
Browse files Browse the repository at this point in the history
[Issue-1966] : Making the method "processException" back to protected
  • Loading branch information
pmlopes committed Jun 17, 2021
2 parents 468ec92 + 47c9ab9 commit 7a8c655
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -96,7 +96,7 @@ private void resume(HttpServerRequest request, boolean parseEnded) {
* This method is protected so custom auth handlers can override the default
* error handling
*/
private void processException(RoutingContext ctx, Throwable exception) {
protected void processException(RoutingContext ctx, Throwable exception) {
if (exception != null) {
if (exception instanceof HttpException) {
final int statusCode = ((HttpException) exception).getStatusCode();
Expand Down

0 comments on commit 7a8c655

Please sign in to comment.