wpzapp/exceptions

View on GitHub
src/InvalidArgumentException.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php
/**
 * WP-ZAPP exceptions for modules and libraries.
 *
 * @package WPZAPP\Exceptions
 * @license GPL-3.0
 * @link    https://wpzapp.org
 */

namespace WPZAPP\Exceptions;

use InvalidArgumentException as StandardInvalidArgumentException;

/**
 * Exception thrown if an argument is not of the expected type.
 *
 * @since 1.0.0
 */
class InvalidArgumentException extends StandardInvalidArgumentException implements Exception
{

    use ExceptionTrait;
}