BindingError

data class BindingError(val name: String, val msg: String) : Named

Represents an error that occurs during the binding process, typically when data is being mapped to or from an object. This class extends the Named interface, inheriting the name property which can be used to identify the source or context of the error.

Parameters

name

The name or identifier for the context in which the error occurred.

msg

A message describing the error.

Constructors

Link copied to clipboard
constructor(name: String, msg: String)

Properties

Link copied to clipboard
val msg: String
Link copied to clipboard
open override val name: String