deep-web-solutions/wordpress-framework-foundations

View on GitHub
src/includes/Exceptions/ReadOnlyPropertyException.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace DeepWebSolutions\Framework\Foundations\Exceptions;

\defined( 'ABSPATH' ) || exit;

/**
 * An exception thrown when trying to modify a read-only property.
 *
 * @since   1.0.0
 * @version 1.0.0
 * @author  Antonius Hegyes <a.hegyes@deep-web-solutions.com>
 * @package DeepWebSolutions\WP-Framework\Foundations\Exceptions
 */
class ReadOnlyPropertyException extends \LogicException {
    /* empty on purpose */
}