9 lines
217 B
PHP
9 lines
217 B
PHP
<?php declare(strict_types = 1);
|
|
|
|
namespace MailPoet\Automation\Engine\Integration;
|
|
|
|
use MailPoet\Automation\Engine\Exceptions\UnexpectedValueException;
|
|
|
|
class ValidationException extends UnexpectedValueException {
|
|
}
|