Shorted a long exception message.

This commit is contained in:
Taylor Otwell 2011-11-16 12:58:24 -06:00
parent 2a1b5d55ae
commit 635ba52a69
1 changed files with 2 additions and 2 deletions

View File

@ -53,10 +53,10 @@ public static function connect($servers)
if ($memcache->getVersion() === false)
{
throw new \RuntimeException('Could not establish memcached connection. Please verify your configuration.');
throw new \RuntimeException('Could not establish memcached connection.');
}
return $memcache;
}
}
}