tweak crypter exception message.

This commit is contained in:
Taylor Otwell 2011-08-22 22:21:51 -05:00
parent 2109165de6
commit ce8c230e72
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ public function __construct($cipher, $mode, $key)
if (trim((string) $this->key) === '')
{
throw new \Exception('The encryption class can not be used without an encryption key.');
throw new \Exception('The encryption class may not be used without an encryption key.');
}
}