1: <?php 2: 3: namespace Authoritarian\Exception\Flow; 4: 5: use Authoritarian\Exception\FlowException; 6: 7: /** 8: * exception thrown when the client id or client secret are missing 9: */ 10: class MissingClientCredentialException extends FlowException 11: { 12: } 13: