* @copyright 2014 Fabian Grutschus. All rights reserved. * @license BSD * @link http://github.com/fabiang/xmpp */ namespace Fabiang\Xmpp\Exception; /** * Exception for out-of-bounds. * * "This is the same as OutOfBoundsException, but this should be used * for normal arrays which are indexed by number, not by key." * * @package Xmpp\Exception */ class OutOfRangeException extends \OutOfBoundsException implements ExceptionInterface { }