Exception

(PHP 5, PHP 7)

Einführung

Exception ist die Basisklasse für alle Exceptions in PHP 5, und die Basisklasse für alle Benutzer-Exceptions in PHP 7.

Vor PHP 7 implementierte Exception das Throwable-Interface nicht.

Klassenbeschreibung

Exception implements Throwable {
/* Eigenschaften */
protected string $message ;
protected int $code ;
protected string $file ;
protected int $line ;
/* Methoden */
public __construct ([ string $message = "" [, int $code = 0 [, Throwable $previous = NULL ]]] )
final public getMessage ( void ) : string
final public getPrevious ( void ) : Throwable
final public getCode ( void ) : mixed
final public getFile ( void ) : string
final public getLine ( void ) : int
final public getTrace ( void ) : array
final public getTraceAsString ( void ) : string
public __toString ( void ) : string
final private __clone ( void ) : void
}

Eigenschaften

message

Die Exceptionmeldung.

code

Die Fehlernummer der Exception.

file

Der Name der Datei, in der die Exception erzeugt wurde.

line

Die Zeilennummer, in der die Exception erzeugt wurde.

Inhaltsverzeichnis