59a2e419441b1ac8e87798bf366fb921eae8360d
[yaffs-website] / src / Exception / DeprecatedMethodException.php
1 <?php
2 /**
3  * Zend Framework (http://framework.zend.com/)
4  *
5  * @see       http://github.com/zendframework/zend-diactoros for the canonical source repository
6  * @copyright Copyright (c) 2015-2016 Zend Technologies USA Inc. (http://www.zend.com)
7  * @license   https://github.com/zendframework/zend-diactoros/blob/master/LICENSE.md New BSD License
8  */
9
10 namespace Zend\Diactoros\Exception;
11
12 use BadMethodCallException;
13
14 /**
15  * Exception indicating a deprecated method.
16  */
17 class DeprecatedMethodException extends BadMethodCallException implements ExceptionInterface
18 {
19 }