openclaw
Version:
Multi-channel AI gateway with extensible messaging integrations
10 lines (9 loc) • 371 B
JavaScript
//#region src/agents/prepared-model-catalog.errors.ts
var PreparedModelCatalogConfigReplacedError = class extends Error {
constructor(agentDir) {
super(`prepared model catalog owner config was replaced during the read (${agentDir})`);
this.name = "PreparedModelCatalogConfigReplacedError";
}
};
//#endregion
export { PreparedModelCatalogConfigReplacedError as t };