diff --git a/src/ApplicationComponent.ts b/src/ApplicationComponent.ts index 1482e73..4feaa59 100644 --- a/src/ApplicationComponent.ts +++ b/src/ApplicationComponent.ts @@ -68,7 +68,7 @@ export default abstract class ApplicationComponent { protected checkSecurityConfigField(field: string) { if (!config.has(field) || config.get(field) === 'default') { - throw new SecurityError('field not configured.'); + throw new SecurityError(`${field} field not configured.`); } } }