blob: 7b61ab3b4f9cc187f88e5a542e001db2cab573b7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<?php
# Lifter010: TODO
/**
* PluginNotFoundException.php - the requested plugin could not be found
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 2 of
* the License, or (at your option) any later version.
*
* @author Marcus Lunzenauer <mlunzena@uos.de>
* @license http://www.gnu.org/licenses/gpl-2.0.html GPL version 2
* @category Stud.IP
*/
class PluginNotFoundException extends Exception {
}
|