1<?php
2
3namespace OAuth\Common\Storage\Exception;
4
5/**
6 * Exception thrown when a token is not found in storage.
7 */
8class TokenNotFoundException extends StorageException
9{
10}
11