Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 18.117.157.139
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
wb /
vendor /
symfony /
form /
Exception /
Delete
Unzip
Name
Size
Permission
Date
Action
AccessException.php
334
B
-rw-rw-r--
2022-07-20 13:00
AlreadySubmittedException.php
493
B
-rw-rw-r--
2022-07-20 13:00
BadMethodCallException.php
495
B
-rw-rw-r--
2022-07-20 13:00
ErrorMappingException.php
340
B
-rw-rw-r--
2022-07-20 13:00
ExceptionInterface.php
448
B
-rw-rw-r--
2022-07-20 13:00
InvalidArgumentException.php
501
B
-rw-rw-r--
2022-07-20 13:00
InvalidConfigurationException.php
356
B
-rw-rw-r--
2022-07-20 13:00
LogicException.php
472
B
-rw-rw-r--
2022-07-20 13:00
OutOfBoundsException.php
490
B
-rw-rw-r--
2022-07-20 13:00
RuntimeException.php
477
B
-rw-rw-r--
2022-07-20 13:00
StringCastException.php
338
B
-rw-rw-r--
2022-07-20 13:00
TransformationFailedException.php
1.51
KB
-rw-rw-r--
2022-07-20 13:00
UnexpectedTypeException.php
547
B
-rw-rw-r--
2022-07-20 13:00
Save
Rename
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Form\Exception; /** * Indicates a value transformation error. * * @author Bernhard Schussek <bschussek@gmail.com> */ class TransformationFailedException extends RuntimeException { private $invalidMessage; private $invalidMessageParameters; public function __construct(string $message = '', int $code = 0, \Throwable $previous = null, string $invalidMessage = null, array $invalidMessageParameters = []) { parent::__construct($message, $code, $previous); $this->setInvalidMessage($invalidMessage, $invalidMessageParameters); } /** * Sets the message that will be shown to the user. * * @param string|null $invalidMessage The message or message key * @param array $invalidMessageParameters Data to be passed into the translator */ public function setInvalidMessage(string $invalidMessage = null, array $invalidMessageParameters = []): void { $this->invalidMessage = $invalidMessage; $this->invalidMessageParameters = $invalidMessageParameters; } public function getInvalidMessage(): ?string { return $this->invalidMessage; } public function getInvalidMessageParameters(): array { return $this->invalidMessageParameters; } }