Using the captions package, linebreaks can be incorporated into figure-captions easily:
\documentclass[12pt]{book}
\usepackage{graphicx}
\usepackage{caption}
\begin{document}
\begin{figure}[htbp]
\begin{center}
\includegraphics{sampleImage.png}
\caption{First line of caption\\second line of caption\\third line of caption\\fourth line of caption}
\end{center}
\end{figure}
\end{document}
producing
, with the line-breaks correctly observed.
Attempting something comparable with KOMA-script:
\documentclass[12pt]{scrbook}
\usepackage{graphicx}
\KOMAoption{captions}{belowfigure}
\begin{document}
\begin{figure}[htbp]
\begin{center}
\includegraphics{"sampleImage.png"}
\caption{First line of caption\\second line of caption\\third line of caption\\fourth line of caption}
\end{center}
\end{figure}
\end{document}
generates an error: Argument of \@caption has an extra }.
Is there another way to get line-breaks in a figure caption using KOMA-script?