Style: Apply Spotless
This commit is contained in:
+6
-2
@@ -96,8 +96,12 @@ public class SessionReader implements Runnable {
|
|||||||
e);
|
e);
|
||||||
|
|
||||||
} catch (MissingParameterException e) {
|
} catch (MissingParameterException e) {
|
||||||
logger.error("Recieved request for command '{}' was missing the '{}' parameter", rawRequest.command(), e.getParameterKey());
|
logger.error(
|
||||||
sendErrorResponse(new ErrorResponse(requestContext, "MISSING_PARAMETER", e.getMessage()));
|
"Recieved request for command '{}' was missing the '{}' parameter",
|
||||||
|
rawRequest.command(),
|
||||||
|
e.getParameterKey());
|
||||||
|
sendErrorResponse(
|
||||||
|
new ErrorResponse(requestContext, "MISSING_PARAMETER", e.getMessage()));
|
||||||
|
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
logger.error("Unexpected IO exception while reading from transport", e);
|
logger.error("Unexpected IO exception while reading from transport", e);
|
||||||
|
|||||||
Reference in New Issue
Block a user