1<?php
2
3namespace Elastica\Exception;
4
5/**
6 * Deprecated exception.
7 *
8 * Is thrown if a function or feature is deprecated and its usage can't be supported by BC layer
9 *
10 * @author Evgeniy Sokolov <ewgraf@gmail.com>
11 */
12class DeprecatedException extends NotImplementedException
13{
14}
15