13 lines
266 B
PHP
13 lines
266 B
PHP
<?php
|
|
|
|
namespace Bsr\Webservice\Exception;
|
|
|
|
/**
|
|
* This exception should be raised by the WebService engine when
|
|
* there is an error in the provided configuration information.
|
|
*
|
|
* @package Bsr\Webservice\Exception
|
|
*/
|
|
class ConfigException extends \Exception {
|
|
}
|