Fix incorrect exceptions message for missing plugins

This commit is contained in:
Ceeram 2011-05-26 16:24:54 +02:00
parent 5f97292648
commit 26588827dc

View file

@ -418,12 +418,12 @@ class MissingTestLoaderException extends CakeException {
} }
/** /**
* Exception Raised when a test loader could not be found * Exception Raised when a plugin could not be found
* *
* @package cake.libs * @package cake.libs
*/ */
class MissingPluginException extends CakeException { class MissingPluginException extends CakeException {
protected $_messageTemplate = 'Test plugin %s could not be found.'; protected $_messageTemplate = 'Plugin %s could not be found.';
} }
/** /**