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.119.131.131
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
3 /
symfony /
options-resolver /
Exception /
Delete
Unzip
Name
Size
Permission
Date
Action
AccessException.php
575
B
-rw-r--r--
2021-01-27 09:00
ExceptionInterface.php
488
B
-rw-r--r--
2021-01-27 09:00
InvalidArgumentException.php
494
B
-rw-r--r--
2021-01-27 09:00
InvalidOptionsException.php
564
B
-rw-r--r--
2021-01-27 09:00
MissingOptionsException.php
528
B
-rw-r--r--
2021-01-27 09:00
NoConfigurationException.php
712
B
-rw-r--r--
2021-01-27 09:00
NoSuchOptionException.php
831
B
-rw-r--r--
2021-01-27 09:00
OptionDefinitionException.php
504
B
-rw-r--r--
2021-01-27 09:00
UndefinedOptionsException.php
574
B
-rw-r--r--
2021-01-27 09: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\OptionsResolver\Exception; /** * Thrown when trying to read an option that has no value set. * * When accessing optional options from within a lazy option or normalizer you should first * check whether the optional option is set. You can do this with `isset($options['optional'])`. * In contrast to the {@link UndefinedOptionsException}, this is a runtime exception that can * occur when evaluating lazy options. * * @author Tobias Schultze <http://tobion.de> */ class NoSuchOptionException extends \OutOfBoundsException implements ExceptionInterface { }