friendica-addons/s3_storage/vendor/akeeba/s3/src/Exception/PropertyNotFound.php

23 lines
412 B
PHP
Raw Normal View History

2022-02-20 21:22:07 +01:00
<?php
/**
* Akeeba Engine
*
* @package akeebaengine
* @copyright Copyright (c)2006-2024 Nicholas K. Dionysopoulos / Akeeba Ltd
2022-02-20 21:22:07 +01:00
* @license GNU General Public License version 3, or later
*/
namespace Akeeba\S3\Exception;
2022-02-20 21:22:07 +01:00
// Protection against direct access
defined('AKEEBAENGINE') || die();
2022-02-20 21:22:07 +01:00
use LogicException;
/**
* Invalid magic property name
*/
class PropertyNotFound extends LogicException
{
}