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