This repository has been archived on 2025-02-26. You can view files and clone it, but cannot push or open issues or pull requests.
szurubooru/src/NotSupportedException.php
2014-10-18 18:48:36 +02:00

10 lines
170 B
PHP

<?php
namespace Szurubooru;
class NotSupportedException extends \BadMethodCallException
{
public function __construct()
{
parent::__construct('Not supported');
}
}