You are here

class EmptyOrInvalidParameterException in Auth0 Single Sign On 8.2

Represents all errors generated by SDK itself.

Hierarchy

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\Exception
View 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

Namesort descending Modifiers Type Description Overrides
EmptyOrInvalidParameterException::__construct public function EmptyOrInvalidParameterException constructor.