<?php
/**
* Exception ClassNotFoundException
*
* @package com.freeorm
* @author Yide Zou
* @link http://www.freeorm.com
* @copyright Copyright (c) 2010 Yide Zou <hide@address.com>.
* All Rights Reserved.
* @license This software is released under the terms of the GNU Lesser General Public License
* A copy of which is available from http://www.gnu.org/copyleft/lesser.html
*/
class ClassNotFoundException extends Exception
{
public function __construct($classname)
{
parent::__construct("The class '$classname' is undefined in ORM.", 0);
}
}
?>