X7ROOT File Manager
Current Path:
/home/prisjneg/public_html/vendor/nesbot/carbon/src/Carbon/Exceptions
home
/
prisjneg
/
public_html
/
vendor
/
nesbot
/
carbon
/
src
/
Carbon
/
Exceptions
/
📁
..
📄
BadComparisonUnitException.php
(916 B)
📄
BadFluentConstructorException.php
(1.04 KB)
📄
BadFluentSetterException.php
(1.03 KB)
📄
BadMethodCallException.php
(325 B)
📄
EndLessPeriodException.php
(413 B)
📄
Exception.php
(294 B)
📄
ImmutableException.php
(1017 B)
📄
InvalidArgumentException.php
(327 B)
📄
InvalidCastException.php
(437 B)
📄
InvalidDateException.php
(1.33 KB)
📄
InvalidFormatException.php
(439 B)
📄
InvalidIntervalException.php
(441 B)
📄
InvalidPeriodDateException.php
(443 B)
📄
InvalidPeriodParameterException.php
(448 B)
📄
InvalidTimeZoneException.php
(441 B)
📄
InvalidTypeException.php
(437 B)
📄
NotACarbonClassException.php
(1.13 KB)
📄
NotAPeriodException.php
(436 B)
📄
NotLocaleAwareException.php
(930 B)
📄
OutOfRangeException.php
(1.92 KB)
📄
ParseErrorException.php
(1.71 KB)
📄
RuntimeException.php
(319 B)
📄
UnitException.php
(430 B)
📄
UnitNotConfiguredException.php
(951 B)
📄
UnknownGetterException.php
(1.03 KB)
📄
UnknownMethodException.php
(1.01 KB)
📄
UnknownSetterException.php
(1.03 KB)
📄
UnknownUnitException.php
(903 B)
📄
UnreachableException.php
(405 B)
Editing: OutOfRangeException.php
<?php /** * This file is part of the Carbon package. * * (c) Brian Nesbitt <brian@nesbot.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Carbon\Exceptions; use InvalidArgumentException as BaseInvalidArgumentException; use Throwable; // This will extends OutOfRangeException instead of InvalidArgumentException since 3.0.0 // use OutOfRangeException as BaseOutOfRangeException; class OutOfRangeException extends BaseInvalidArgumentException implements InvalidArgumentException { /** * The unit or name of the value. * * @var string */ private $unit; /** * The range minimum. * * @var mixed */ private $min; /** * The range maximum. * * @var mixed */ private $max; /** * The invalid value. * * @var mixed */ private $value; /** * Constructor. * * @param string $unit * @param mixed $min * @param mixed $max * @param mixed $value * @param int $code * @param Throwable|null $previous */ public function __construct($unit, $min, $max, $value, $code = 0, ?Throwable $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); } /** * @return mixed */ public function getMax() { return $this->max; } /** * @return mixed */ public function getMin() { return $this->min; } /** * @return mixed */ public function getUnit() { return $this->unit; } /** * @return mixed */ public function getValue() { return $this->value; } }
Upload File
Create Folder