friendship ended with social-app. php is my new best friend
1<?php
2/**
3 * Class OAuthStorageException
4 *
5 * @created 30.12.2017
6 * @author Smiley <smiley@chillerlan.net>
7 * @copyright 2017 Smiley
8 * @license MIT
9 */
10declare(strict_types=1);
11
12namespace chillerlan\OAuth\Storage;
13
14use chillerlan\OAuth\OAuthException;
15
16/**
17 * Thrown on general storage errors
18 */
19class OAuthStorageException extends OAuthException{
20
21}