RuntimeError

data class RuntimeError(val message: String, val cause: Throwable?) : FittingError(source)

Anything else thrown while running the fit: PDFModeler numeric failure, a not-yet-supported feature guard, an unexpected JVM exception. The cause carries the original throwable.

Constructors

Link copied to clipboard
constructor(message: String, cause: Throwable?)

Properties

Link copied to clipboard
open override val cause: Throwable?

Underlying exception when one exists; null for pure-data errors.

Link copied to clipboard
open override val message: String

Short, user-facing message.