Skip to content

Commit

Permalink
fix exception message capitalization
Browse files Browse the repository at this point in the history
  • Loading branch information
davidhiendl committed Jun 20, 2023
1 parent b53ffca commit 27cea00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/code/core/Mage/Eav/Model/Config.php
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ protected function _loadEntityTypes()
$fqEntityModelClass = Mage::getConfig()->getModelClassName($entityModelClass);
if (!class_exists($fqEntityModelClass)) {
if (Mage::getIsDeveloperMode()) {
throw new Exception('failed loading of eav entity type because it does not exist: ' . $entityModelClass);
throw new Exception('Failed loading of eav entity type because it does not exist: ' . $entityModelClass);
} else {
Mage::log('skipped loading of eav entity type because it does not exist: ' . $entityModelClass);
}
Expand Down

0 comments on commit 27cea00

Please sign in to comment.