blob: 4da15791d98a2e24f368f0bf27e3b0c8ad609673 (
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 {}
|