Your IP : 216.73.216.79


Current Path : /var/www/html/eform/vendor/directorytree/ldaprecord/src/
Upload File :
Current File : /var/www/html/eform/vendor/directorytree/ldaprecord/src/DetailedError.php

<?php

namespace LdapRecord;

class DetailedError
{
    /**
     * Constructor.
     */
    public function __construct(
        protected int $errorCode,
        protected string $errorMessage,
        protected ?string $diagnosticMessage
    ) {}

    /**
     * Get the LDAP error code.
     */
    public function getErrorCode(): int
    {
        return $this->errorCode;
    }

    /**
     * Get the LDAP error message.
     */
    public function getErrorMessage(): string
    {
        return $this->errorMessage;
    }

    /**
     * Get the LDAP diagnostic message.
     */
    public function getDiagnosticMessage(): ?string
    {
        return $this->diagnosticMessage;
    }
}