diff options
author | wei <> | 2006-12-05 23:37:07 +0000 |
---|---|---|
committer | wei <> | 2006-12-05 23:37:07 +0000 |
commit | 33b2284955a8f0015922d4c69c5082141b584f27 (patch) | |
tree | e23b3805a8c1e3dd70076ae36d2e4733f11d56bc /framework/Data/SqlMap/Configuration/TParameterMap.php | |
parent | 176ee7e9b6c69cf42e7afeeb03db602237a49bc3 (diff) |
load the inlineeditor textbox in client side onload.
Diffstat (limited to 'framework/Data/SqlMap/Configuration/TParameterMap.php')
-rw-r--r-- | framework/Data/SqlMap/Configuration/TParameterMap.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/framework/Data/SqlMap/Configuration/TParameterMap.php b/framework/Data/SqlMap/Configuration/TParameterMap.php index 8d09d9a9..e4d77a91 100644 --- a/framework/Data/SqlMap/Configuration/TParameterMap.php +++ b/framework/Data/SqlMap/Configuration/TParameterMap.php @@ -155,7 +155,7 @@ class TParameterMap extends TComponent * @param mixed object to obtain the property from.
* @param TParameterProperty parameter property.
* @return mixed property value.
- * @throws TSqlMapExecutionException if property access is invalid.
+ * @throws TSqlMapException if property access is invalid.
*/
protected function getObjectValue($object,$property)
{
@@ -165,7 +165,7 @@ class TParameterMap extends TComponent }
catch (TInvalidPropertyException $e)
{
- throw new TSqlMapExecutionException(
+ throw new TSqlMapException(
'sqlmap_unable_to_get_property_for_parameter',
$this->getID(), $property->getProperty(), get_class($object));
}
|