PHP 8.3.21 Released!

La clase SNMPException

(PHP 5 >= 5.4.0, PHP 7, PHP 8)

Introducción

Representa un error lanzado por SNMP. No se debe lanzar una excepción SNMPException desde su código. Ver las excepciones para más información sobre las excepciones en PHP.

Sinopsis de la Clase

class SNMPException extends RuntimeException {
/* Propiedades heredadas */
protected string $message = "";
private string $string = "";
protected int $code;
protected string $file = "";
protected int $line;
private array $trace = [];
private ?Throwable $previous = null;
/* Métodos heredados */
public Exception::__construct(string $message = "", int $code = 0, ?Throwable $previous = null)
final public Exception::getCode(): int
final public Exception::getFile(): string
final public Exception::getLine(): int
final public Exception::getTrace(): array
}

Propiedades

code

Código de error de la biblioteca SNMP. Utilizar la función Exception::getCode() para acceder a él.

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top