Fix for wrong MissingPluginException message

This commit is contained in:
Majna 2011-06-21 22:47:41 +02:00
parent 17384f3cf4
commit e6b44755f9

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
*/
class MissingPluginException extends CakeException {
protected $_messageTemplate = 'Test plugin %s could not be found.';
protected $_messageTemplate = 'Plugin %s could not be found.';
}
/**