|
1
|
<?php declare(strict_types = 1); |
|
2
|
|
|
3
|
namespace MailPoet\Automation\Engine\Integration; |
|
4
|
|
|
5
|
if (!defined('ABSPATH')) exit; |
|
6
|
|
|
7
|
|
|
8
|
use MailPoet\Automation\Engine\Exceptions\UnexpectedValueException; |
|
9
|
|
|
10
|
class ValidationException extends UnexpectedValueException { |
|
11
|
} |
|
12
|
|