
­­­­­­­­­­­­­­­­­­
<!DOCTYPE html>
<html>
<?php


namespace Jet_Form_Builder\Exceptions;

// If this file is called directly, abort.
if ( ! defined( 'WPINC' ) ) {
	die;
}

class Request_Exception extends Handler_Exception {

	private $errors;

	public function __construct( $message = '', ...$errors ) {
		$this->errors = isset( $errors[0] ) ? $errors[0] : false;

		parent::__construct( $message, ...$errors );
	}

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



}
