class EmptyOrInvalidParameterException in Auth0 Single Sign On 8.2
Represents all errors generated by SDK itself.
Hierarchy
- class \Auth0\SDK\Exception\CoreException extends \Auth0\SDK\Exception\Exception
- class \Auth0\SDK\Exception\EmptyOrInvalidParameterException
Expanded class hierarchy of EmptyOrInvalidParameterException
5 files declare their use of EmptyOrInvalidParameterException
- GenericResource.php in vendor/
auth0/ auth0-php/ src/ API/ Management/ GenericResource.php - Roles.php in vendor/
auth0/ auth0-php/ src/ API/ Management/ Roles.php - RolesMockedTest.php in vendor/
auth0/ auth0-php/ tests/ API/ Management/ RolesMockedTest.php - Users.php in vendor/
auth0/ auth0-php/ src/ API/ Management/ Users.php - UsersMockedTest.php in vendor/
auth0/ auth0-php/ tests/ API/ Management/ UsersMockedTest.php
File
- vendor/
auth0/ auth0-php/ src/ Exception/ EmptyOrInvalidParameterException.php, line 8
Namespace
Auth0\SDK\ExceptionView source
class EmptyOrInvalidParameterException extends CoreException {
/**
* EmptyOrInvalidParameterException constructor.
*
* @param string $parameter_name The parameter name that is missing or invalid.
*/
public function __construct($parameter_name) {
parent::__construct('Empty or invalid ' . $parameter_name . '.');
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
EmptyOrInvalidParameterException:: |
public | function | EmptyOrInvalidParameterException constructor. |