UNPKG

@freemework/common

Version:

Common library of the Freemework Project.

9 lines 328 B
import { FSqlException } from "./f_sql_exception.js"; export class FSqlExceptionConstraint extends FSqlException { constraintName; constructor(message, constraintName, innerEx) { super(message, innerEx); this.constraintName = constraintName; } } //# sourceMappingURL=f_sql_exception_constraint.js.map