From 9cc6b7fffd31f4b9ee9aceef9224c84dcf28aeb8 Mon Sep 17 00:00:00 2001 From: xue <> Date: Tue, 4 Jul 2006 23:25:41 +0000 Subject: Merge from 3.0 branch till 1239. --- framework/Collections/TList.php | 4 ++-- framework/Collections/TMap.php | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'framework/Collections') diff --git a/framework/Collections/TList.php b/framework/Collections/TList.php index 5b27a02e..015781cb 100644 --- a/framework/Collections/TList.php +++ b/framework/Collections/TList.php @@ -152,7 +152,7 @@ class TList extends TComponent implements IteratorAggregate,ArrayAccess throw new TInvalidDataValueException('list_index_invalid',$index); } else - throw new TInvalidOperation('list_readonly',get_class($this)); + throw new TInvalidOperationException('list_readonly',get_class($this)); } /** @@ -201,7 +201,7 @@ class TList extends TComponent implements IteratorAggregate,ArrayAccess throw new TInvalidDataValueException('list_index_invalid',$index); } else - throw new TInvalidOperation('list_readonly',get_class($this)); + throw new TInvalidOperationException('list_readonly',get_class($this)); } /** diff --git a/framework/Collections/TMap.php b/framework/Collections/TMap.php index 28508e1d..e3a26e5f 100644 --- a/framework/Collections/TMap.php +++ b/framework/Collections/TMap.php @@ -123,7 +123,7 @@ class TMap extends TComponent implements IteratorAggregate,ArrayAccess if(!$this->_r) $this->_d[$key]=$value; else - throw new TInvalidOperation('map_readonly',get_class($this)); + throw new TInvalidOperationException('map_readonly',get_class($this)); } /** @@ -146,7 +146,7 @@ class TMap extends TComponent implements IteratorAggregate,ArrayAccess return null; } else - throw new TInvalidOperation('map_readonly',get_class($this)); + throw new TInvalidOperationException('map_readonly',get_class($this)); } /** -- cgit v1.2.3