<?php
/**
* CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
* Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
*
* Licensed under The MIT License
* Redistributions of files must retain the above copyright notice.
*
* @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
* @since 3.3.1
* @license https://opensource.org/licenses/mit-license.php MIT License
*/
namespace Cake\Routing\Exception;
use Cake\Core\Exception\Exception;
/**
* Exception raised when a route names used twice.
*/
class DuplicateNamedRouteException extends Exception
{
/**
* {@inheritDoc}
*/
protected $_messageTemplate = 'A route named "%s" has already been connected to "%s".';
/**
* {@inheritDoc}
*/
public function __construct($message, $code = 404, $previous = null)
{
if (is_array($message) && isset($message['message'])) {
$this->_messageTemplate = $message['message'];
}
parent::__construct($message, $code, $previous);
}
}