PodDefinitionStoreException constructor
PodDefinitionStoreException({})
Exception thrown when a pod definition store error occurs.
This exception typically occurs when a pod definition is being stored in the application context, but an error occurs during the storage process.
Example:
throw PodDefinitionStoreException('Pod definition store error');
Implementation
PodDefinitionStoreException({String? msg, required String name, String? resourceDescription, Throwable? cause}) : super.withResource(
resourceDescription,
name,
'Failed to register pod definition "$name"${resourceDescription != null ? " (from $resourceDescription)" : ""}: ${msg ?? 'unspecified error'}. Check declaration and uniqueness of the pod name.',
cause: cause
);