Класс RuntimeException

(PHP 5 >= 5.1.0, PHP 7)

Введение

Создается исключение в случае ошибки, которая может быть найдена только во время исполнения.

Обзор классов

RuntimeException extends Exception {
/* Наследуемые свойства */
protected string $message ;
protected int $code ;
protected string $file ;
protected int $line ;
/* Наследуемые методы */
final public string Exception::getMessage ( void )
final public Exception Exception::getPrevious ( void )
final public mixed Exception::getCode ( void )
final public string Exception::getFile ( void )
final public int Exception::getLine ( void )
final public array Exception::getTrace ( void )
final public string Exception::getTraceAsString ( void )
public string Exception::__toString ( void )
final private void Exception::__clone ( void )
}

Коментарии

Автор:
Direct known subclasses (following the java docs convention (: ):
OutOfBoundsException, OverflowException, RangeException, UnderflowException, UnexpectedValueException
2011-02-03 04:31:13
http://php5.kiev.ua/manual/ru/class.runtimeexception.html
Whole exception-class hierarchy is shown at spl.exceptions#spl.exceptions.tree
2015-02-12 21:29:42
http://php5.kiev.ua/manual/ru/class.runtimeexception.html
A simple example of using RuntimeException Class:-

Lets say we would be dividing two numbers and throw an exception as soon as the denominator is equal to zero.

<?php
$iNum1 
10;
$iNum2 0;

try{
if (
$iNum2 == 0){
throw new 
RuntimeException("Division by Zero");
}
$iResult $iNum1 $iNum2;
echo (
"Division Result of \$iNum1 and $iNum2 = ".($iResult)."<br/>");
}
catch (
RuntimeException $e){
echo (
"Division by Zero is not possible");
}
?>
2016-07-04 13:41:32
http://php5.kiev.ua/manual/ru/class.runtimeexception.html

    Поддержать сайт на родительском проекте КГБ