Browse Source

Merge pull request #1221 from arisk/patch-1

Added PDO error code
Taylor Otwell 12 years ago
parent
commit
c397c26a7b
1 changed files with 4 additions and 1 deletions
  1. 4 1
      laravel/database/exception.php

+ 4 - 1
laravel/database/exception.php

@@ -22,6 +22,9 @@ class Exception extends \Exception {
 		$this->inner = $inner;
 
 		$this->setMessage($sql, $bindings);
+		
+		// Set the exception code
+		$this->code = $inner->getCode();
 	}
 
 	/**
@@ -47,5 +50,5 @@ class Exception extends \Exception {
 
 		$this->message .= "\n\nSQL: ".$sql."\n\nBindings: ".var_export($bindings, true);
 	}
-
+	
 }