Skip to content

Commit d83f376

Browse files
committed
scalafmt
1 parent 5b643de commit d83f376

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

http-core/src/main/scala/org/apache/pekko/http/impl/engine/parsing/ParsingException.scala

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@ import pekko.http.scaladsl.model.{ ErrorInfo, StatusCode, StatusCodes }
2626
private[parsing] class ParsingException(
2727
val status: StatusCode,
2828
val info: ErrorInfo) extends RuntimeException(info.formatPretty) {
29-
def this(status: StatusCode, summary: String) =
29+
def this(status: StatusCode, summary: String) =
3030
this(status, ErrorInfo(if (summary.isEmpty) status.defaultMessage else summary))
31-
def this(summary: String) =
31+
def this(summary: String) =
3232
this(StatusCodes.BadRequest, ErrorInfo(summary))
33-
def this(summary: String, detail: String) =
33+
def this(summary: String, detail: String) =
3434
this(StatusCodes.BadRequest, ErrorInfo(summary, detail))
3535
}
3636

0 commit comments

Comments
 (0)