diff options
Diffstat (limited to 'framework')
-rw-r--r-- | framework/core.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/framework/core.php b/framework/core.php index 84077a04..794384b4 100644 --- a/framework/core.php +++ b/framework/core.php @@ -468,7 +468,7 @@ class PradoBase {
include_once($type.self::CLASS_FILE_EXT);
if(!class_exists($type,false))
- throw new TInvalidDataValueException('prado_component_unknown',$type);
+ throw new TInvalidOperationException('prado_component_unknown',$type);
}
else
{
@@ -477,7 +477,7 @@ class PradoBase {
include_once($path.self::CLASS_FILE_EXT);
if(!class_exists($className,false))
- throw new TInvalidDataValueException('prado_component_unknown',$type);
+ throw new TInvalidOperationException('prado_component_unknown',$type);
}
$type=$className;
}
|