reverting my mistake

This commit is contained in:
0x20h 2012-01-13 21:50:03 +01:00
parent 153152642c
commit 6ddf6dad36

View file

@ -226,6 +226,7 @@ class MissingActionException extends CakeException {
parent::__construct($message, $code);
}
}
/**
* Private Action exception - used when a controller action
* starts with a `_`.
@ -354,7 +355,7 @@ class MissingDatasourceException extends CakeException {
* @package Cake.Error
*/
class MissingTableException extends CakeException {
protected $_messageTemplate = 'Database table %s for model %s was not found.';
protected $_messageTemplate = 'Table %s for model %s was not found in datasource %s.';
}
/**
@ -433,7 +434,7 @@ class ConfigureException extends CakeException { }
/**
* Exception class for Socket. This exception will be thrown from CakeSocket, CakeEmail, HttpSocket
* SmtpTransport and HttpResponse when it encounters an error.
* SmtpTransport, MailTransport and HttpResponse when it encounters an error.
*
* @package Cake.Error
*/