1<?php 2/** 3 * @author Andreas Gohr <gohr@cosmocode.de> 4 * Released under the MIT license. 5 */ 6 7namespace OAuth\OAuth2\Service\Exception; 8 9use OAuth\Common\Exception\Exception; 10 11/** 12 * Exception thrown when service is not fully configured yet 13 */ 14class InvalidServiceConfigurationException extends Exception 15{ 16}