Browse Source

throw exception in benchmark class if one has not been defined.

Taylor Otwell 14 years ago
parent
commit
72e7275fe0
1 changed files with 1 additions and 1 deletions
  1. 1 1
      system/benchmark.php

+ 1 - 1
system/benchmark.php

@@ -33,7 +33,7 @@ class Benchmark {
 			return number_format((microtime(true) - static::$marks[$name]) * 1000, 2);
 		}
 
-		return 0.0;
+		throw new \Exception("A Benchmark named [$name] has not been started.");
 	}
 
 	/**