From c2b37f0e53c72904da6c6c0b9682205153ba4149 Mon Sep 17 00:00:00 2001 From: zYne Date: Tue, 6 Feb 2007 19:07:31 +0000 Subject: [PATCH] --- lib/Doctrine/Table.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Doctrine/Table.php b/lib/Doctrine/Table.php index 61f9efa42..384dd54c7 100644 --- a/lib/Doctrine/Table.php +++ b/lib/Doctrine/Table.php @@ -755,7 +755,7 @@ class Doctrine_Table extends Doctrine_Configurable implements Countable $lower = strtolower($name); if (isset($this->columns[$lower])) { - throw new Doctrine_Table_Exception('Column name with ' . $lower . ' already exists!'); + throw new Doctrine_Table_Exception("Couldn't bind relation. Column with name " . $lower . ' already exists!'); } $e = explode(' as ', $name);