File "ValidationException.php"

Full Path: /home/alforbsx/alfouadgroup.co/wp-content/plugins/fluent-smtp/includes/Support/ValidationException.php
File size: 387 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace FluentMail\Includes\Support;

use Exception;

class ValidationException extends Exception
{
    public function __construct($message = "", $code = 0 , Exception $previous = NULL, $errors = [])
    {
        $this->errors = $errors;

        parent::__construct($message, $code, $previous);
    }

    public function errors()
    {
        return $this->errors;
    }
}