Remove namespace from exception.

This commit is contained in:
Justin Hileman
2012-05-01 14:20:11 -07:00
parent a47289607d
commit 36fbb28387
+1 -1
View File
@@ -104,7 +104,7 @@ class Mustache_Mustache {
if (isset($options['escape'])) {
if (!is_callable($options['escape'])) {
throw new \InvalidArgumentException('Mustache Constructor "escape" option must be callable');
throw new InvalidArgumentException('Mustache Constructor "escape" option must be callable');
}
$this->escape = $options['escape'];