BuilderException

class BuilderException(message: String, cause: Throwable? = null) : RuntimeException

Exception thrown when a query cannot be built correctly due to invalid state or missing mandatory clauses (e.g., DELETE without WHERE).

This exception indicates a programmer error during query construction and is intended to be thrown immediately, bypassing the DataResult pattern.

Constructors

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

Properties

Link copied to clipboard
open val cause: Throwable?
Link copied to clipboard
Link copied to clipboard
open val message: String?
Link copied to clipboard
Link copied to clipboard