Browse Source

Shorted a long exception message.

Taylor Otwell 13 years ago
parent
commit
635ba52a69
1 changed files with 2 additions and 2 deletions
  1. 2 2
      laravel/memcached.php

+ 2 - 2
laravel/memcached.php

@@ -53,10 +53,10 @@ class Memcached {
 
 		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;
 	}
 
-}
+}