11 lines
183 B
PHP
11 lines
183 B
PHP
<?php declare(strict_types = 1);
|
|
|
|
namespace MailPoet\Doctrine\WPDB\Exceptions;
|
|
|
|
if (!defined('ABSPATH')) exit;
|
|
|
|
|
|
use Exception;
|
|
|
|
class MissingParameterException extends Exception {
|
|
}
|