PHP Doku:: Exception - class.exception.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchSprachreferenzVordefinierte ExceptionsException

Ein Service von Reinhard Neidl - Webprogrammierung.

Vordefinierte Exceptions

<<Vordefinierte Exceptions

Exception::__construct>>


UnterSeiten:

Exception

Einführung

Exception ist die Basisklasse für alle Exceptions.

Klassenbeschreibung

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

Eigenschaften

message

Die Exceptionmeldung.

code

Die Fehlernummer der Exception.

file

Der Name der Datei, in der die Exception aufgetreten ist (geworfen wurde).

line

Die Zeilennummer, in der die Exception aufgetreten ist (geworfen wurde).

Inhaltsverzeichnis


2 BenutzerBeiträge:
- Beiträge aktualisieren...
kayo
11.12.2009 10:20
To generate an exception use:

<?php
Throw new Exception("Message to display");
?>

By default it will be shown to the user. Use Try...catch to handle it.
taras dot dot dot di at gmail dot com
22.07.2008 13:08
Note that the default message is an empty string, and the default code is zero



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)