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