FOSElasticaBundle/Exception/AliasIsIndexException.php

12 lines
255 B
PHP
Raw Normal View History

<?php
namespace FOS\ElasticaBundle\Exception;
class AliasIsIndexException extends \Exception
{
public function __construct($indexName)
{
2015-03-13 14:51:07 +01:00
parent::__construct(sprintf('Expected %s to be an alias but it is an index.', $indexName));
}
}