Browse Source

Added PDO error code

arisk 12 years ago
parent
commit
e541cf9ebd
1 changed files with 11 additions and 0 deletions
  1. 11 0
      laravel/database/exception.php

+ 11 - 0
laravel/database/exception.php

@@ -22,6 +22,7 @@ class Exception extends \Exception {
 		$this->inner = $inner;
 		$this->inner = $inner;
 
 
 		$this->setMessage($sql, $bindings);
 		$this->setMessage($sql, $bindings);
+		$this->setCode();
 	}
 	}
 
 
 	/**
 	/**
@@ -37,5 +38,15 @@ class Exception extends \Exception {
 
 
 		$this->message .= "\n\nSQL: ".$sql."\n\nBindings: ".var_export($bindings, true);
 		$this->message .= "\n\nSQL: ".$sql."\n\nBindings: ".var_export($bindings, true);
 	}
 	}
+	
+	/**
+	 * Set the exception code.
+	 *
+	 * @return void
+	 */        
+	protected function setCode()
+	{
+		$this->code = $this->inner->getCode();
+	}
 
 
 }
 }