blob: a7430369591e31f12fcd14f1c79239d17964421e (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<?php
/**
* PluginException
*
* A plugin Exception, thrown when an Exception occurs relating to the plugin mechanism.
* Subclass for specific plugin Exceptions.
*
* @package Elgg.Core
* @subpackage Exception
*/
class PluginException extends Exception {}
|