blob: b3daeabb72e875995bb626bfa7e138328cdc43c1 (
plain)
1
2
3
4
5
6
7
8
9
10
|
<?php
namespace OAuth\Common\Storage\Exception;
/**
* Exception thrown when a state is not found in storage.
*/
class AuthorizationStateNotFoundException extends StorageException
{
}
|