feat(marketing-pages): add Page + SiteSettings entities + errors

This commit is contained in:
2026-05-05 08:27:53 +02:00
parent 9e8adb67c0
commit 3ff4afe04b
4 changed files with 106 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
export class PageNotFoundError extends Error {
constructor(message = "Page not found", options?: ErrorOptions) {
super(message, options);
}
}
export class InputParseError extends Error {
constructor(message: string, options?: ErrorOptions) {
super(message, options);
}
}