[verified] refactor: establish service and frontend boundaries
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
export class ConfigValidationError extends Error {
|
||||
constructor(message) { super(message); this.name = 'ConfigValidationError' }
|
||||
}
|
||||
export class ConfigNotFoundError extends Error {
|
||||
constructor(message) { super(message); this.name = 'ConfigNotFoundError' }
|
||||
}
|
||||
Reference in New Issue
Block a user