1<?php 2 3namespace Elastica\Exception; 4 5/** 6 * Not implemented exception. 7 * 8 * Is thrown if a function or feature is not implemented yet 9 * 10 * @author Nicolas Ruflin <spam@ruflin.com> 11 */ 12class NotImplementedException extends \BadMethodCallException implements ExceptionInterface 13{ 14} 15