11 lines
187 B
PHP
11 lines
187 B
PHP
<?php
|
|
|
|
namespace OAuth\Common\Storage\Exception;
|
|
|
|
/**
|
|
* Exception thrown when a state is not found in storage.
|
|
*/
|
|
class AuthorizationStateNotFoundException extends StorageException
|
|
{
|
|
}
|