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: ParseErrorException.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; class ParseErrorException extends BaseInvalidArgumentException implements InvalidArgumentException { /** * The expected. * * @var string */ protected $expected; /** * The actual. * * @var string */ protected $actual; /** * The help message. * * @var string */ protected $help; /** * Constructor. * * @param string $expected * @param string $actual * @param int $code * @param Throwable|null $previous */ public function __construct($expected, $actual, $help = '', $code = 0, ?Throwable $previous = null) { $this->expected = $expected; $this->actual = $actual; $this->help = $help; $actual = $actual === '' ? 'data is missing' : "get '$actual'"; parent::__construct(trim("Format expected $expected but $actual\n$help"), $code, $previous); } /** * Get the expected. * * @return string */ public function getExpected(): string { return $this->expected; } /** * Get the actual. * * @return string */ public function getActual(): string { return $this->actual; } /** * Get the help message. * * @return string */ public function getHelp(): string { return $this->help; } }
Upload File
Create Folder