ACC SHELL

Path : /srv/www/vhosts/printeco/vendor/klein/klein/src/Klein/Exceptions/
File Upload :
Current File : /srv/www/vhosts/printeco/vendor/klein/klein/src/Klein/Exceptions/DuplicateServiceException.php

<?php
/**
 * Klein (klein.php) - A fast & flexible router for PHP
 *
 * @author      Chris O'Hara <cohara87@gmail.com>
 * @author      Trevor Suarez (Rican7) (contributor and v2 refactorer)
 * @copyright   (c) Chris O'Hara
 * @link        https://github.com/klein/klein.php
 * @license     MIT
 */

namespace Klein\Exceptions;

use OverflowException;

/**
 * DuplicateServiceException
 *
 * Exception used for when a service is attempted to be registered that already exists
 */
class DuplicateServiceException extends OverflowException implements KleinExceptionInterface
{
}

ACC SHELL 2018