blob: f344e6b28040b8660381f81f343c49d03e4391cb (
plain)
1
2
3
4
5
6
7
8
9
10
|
<?php
/**
* ClassNotFoundException
* An Class not found Exception, throw when an class can not be found occurs.
*
* @author Curverider Ltd <info@elgg.com>
* @package Elgg
* @subpackage Exceptions
*/
class ClassNotFoundException extends ClassException {}
|