wpzapp/exceptions

View on GitHub
src/UnderflowException.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 UnderflowException as StandardUnderflowException;

/**
 * Exception thrown when performing an invalid operation on an empty container.
 *
 * @since 1.0.0
 */
class UnderflowException extends StandardUnderflowException implements Exception
{

    use ExceptionTrait;
}