/
home
/
techb158
/
immovalet.com
/
vendor
/
nesbot
/
carbon
/
src
/
Carbon
/
Exceptions
/
/home/techb158/immovalet.com/vendor/nesbot/carbon/src/Carbon/Exceptions
mkdir
upload
Name
Size
Mode
Actions
BadComparisonUnitException.php
658
0644
edit
dl
rm
BadFluentConstructorException.php
792
0644
edit
dl
rm
BadFluentSetterException.php
781
0644
edit
dl
rm
BadMethodCallException.php
317
0644
edit
dl
rm
Exception.php
286
0644
edit
dl
rm
ImmutableException.php
753
0644
edit
dl
rm
InvalidArgumentException.php
319
0644
edit
dl
rm
InvalidCastException.php
749
0644
edit
dl
rm
InvalidDateException.php
1359
0644
edit
dl
rm
InvalidFormatException.php
751
0644
edit
dl
rm
InvalidIntervalException.php
753
0644
edit
dl
rm
InvalidPeriodDateException.php
755
0644
edit
dl
rm
InvalidPeriodParameterException.php
760
0644
edit
dl
rm
InvalidTimeZoneException.php
753
0644
edit
dl
rm
InvalidTypeException.php
749
0644
edit
dl
rm
NotACarbonClassException.php
907
0644
edit
dl
rm
NotAPeriodException.php
748
0644
edit
dl
rm
NotLocaleAwareException.php
928
0644
edit
dl
rm
OutOfRangeException.php
1959
0644
edit
dl
rm
ParseErrorException.php
925
0644
edit
dl
rm
RuntimeException.php
311
0644
edit
dl
rm
UnitException.php
742
0644
edit
dl
rm
UnitNotConfiguredException.php
693
0644
edit
dl
rm
UnknownGetterException.php
777
0644
edit
dl
rm
UnknownMethodException.php
765
0644
edit
dl
rm
UnknownSetterException.php
775
0644
edit
dl
rm
UnknownUnitException.php
645
0644
edit
dl
rm
UnreachableException.php
717
0644
edit
dl
rm
Edit:
/home/techb158/immovalet.com/vendor/nesbot/carbon/src/Carbon/Exceptions/InvalidTypeException.php
(749B)
<?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 Exception; use InvalidArgumentException as BaseInvalidArgumentException; class InvalidTypeException extends BaseInvalidArgumentException implements InvalidArgumentException { /** * Constructor. * * @param string $message * @param int $code * @param Exception|null $previous */ public function __construct($message, $code = 0, Exception $previous = null) { parent::__construct($message, $code, $previous); } }
Save
cmd:
run