0byt3m1n1
Path:
/
data
/
applications
/
aps
/
tikiwiki
/
14.1-0
/
standard
/
htdocs
/
lib
/
core
/
Search
/
Elastic
/
[
Home
]
File: SortException.php
<?php // (c) Copyright 2002-2014 by authors of the Tiki Wiki CMS Groupware Project // // All Rights Reserved. See copyright.txt for details and a complete list of authors. // Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details. // $Id: SortException.php 55352 2015-05-06 20:39:40Z nkoth $ class Search_Elastic_SortException extends Search_Elastic_Exception { private $field; function __construct($field) { $this->field = $field; parent::__construct(tr('Sort field %0 not found in index', $this->field)); } }