1: <?php 2: 3: namespace Authoritarian\Exception\Flow; 4: 5: use Authoritarian\Exception\FlowException; 6: 7: /** 8: * exception thrown when the authorization code is missing to generate a request 9: **/ 10: class MissingAuthorizationCodeException extends FlowException 11: { 12: } 13: 14: