@freemework/common
Version:
Common library of the Freemework Project.
9 lines • 328 B
JavaScript
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