File "OutOfRangeException.php"

Full Path: /home/warrior1/public_html/wp-content-20241001222009/plugins/mailpoet/vendor-prefixed/nesbot/carbon/src/Carbon/Exceptions/OutOfRangeException.php
File size: 970 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
namespace MailPoetVendor\Carbon\Exceptions;
if (!defined('ABSPATH')) exit;
use Exception;
use InvalidArgumentException as BaseInvalidArgumentException;
// This will extends OutOfRangeException instead of InvalidArgumentException since 3.0.0
// use OutOfRangeException as BaseOutOfRangeException;
class OutOfRangeException extends BaseInvalidArgumentException implements InvalidArgumentException
{
 private $unit;
 private $min;
 private $max;
 private $value;
 public function __construct($unit, $min, $max, $value, $code = 0, Exception $previous = null)
 {
 $this->unit = $unit;
 $this->min = $min;
 $this->max = $max;
 $this->value = $value;
 parent::__construct("{$unit} must be between {$min} and {$max}, {$value} given", $code, $previous);
 }
 public function getMax()
 {
 return $this->max;
 }
 public function getMin()
 {
 return $this->min;
 }
 public function getUnit()
 {
 return $this->unit;
 }
 public function getValue()
 {
 return $this->value;
 }
}