mirror of
https://gh.wpcy.net/https://github.com/Anyape/updatepulse-server.git
synced 2026-05-05 10:43:57 +08:00
14 lines
297 B
PHP
14 lines
297 B
PHP
<?php
|
|
|
|
namespace Anyape\UpdatePulse\Server\Server\Update;
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit; // Exit if accessed directly
|
|
}
|
|
|
|
use RuntimeException;
|
|
|
|
/**
|
|
* Exception thrown when the server fails to parse a plugin/theme/generic.
|
|
*/
|
|
class Invalid_Package_Exception extends RuntimeException { }
|