21 lines
461 B
PHP
21 lines
461 B
PHP
<?php
|
|
/**
|
|
* Marker interface for all EDD exceptions
|
|
*
|
|
* @package EDD
|
|
* @subpackage Interfaces/Utilities
|
|
* @copyright Copyright (c) 2018, Easy Digital Downloads, LLC
|
|
* @license http://opensource.org/licenses/gpl-2.0.php GNU Public License
|
|
* @since 3.0
|
|
*/
|
|
|
|
/**
|
|
* EDD_Exception interface.
|
|
*
|
|
* This marker interface is used to make catching a variety of EDD-defined
|
|
* exceptions simpler.
|
|
*
|
|
* @since 3.0
|
|
*/
|
|
interface EDD_Exception {}
|