Класс OverflowException

(PHP 5 >= 5.1.0, PHP 7)

Введение

Создается исключение при добавлении элемента в полный контейнер.

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

OverflowException extends RuntimeException {
/* Наследуемые свойства */
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 )
}

Коментарии

postgres=# create temporary table test (demo numeric(3,2));

function sumThenInsertDemo($a, $b){
    $sum = $a + $b;

    if ($sum >= 10){
        throw new OverflowException('$a + $b will overflow storage');
    }
   
    $link = pg_connect(...);
    pg_query($link, 'insert into test values('.$sum.')');
}
2017-01-26 15:23:20
http://php5.kiev.ua/manual/ru/class.overflowexception.html

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