略微加速

PHP官方手册 - 互联网笔记

PHP - Manual: RuntimeException

2024-04-27

The RuntimeException class

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

简介

Exception thrown if an error which can only be found on runtime occurs.

类摘要

class RuntimeException extends Exception {
/* 继承的属性 */
protected string $message = "";
private string $string = "";
protected int $code;
protected string $file = "";
protected int $line;
private array $trace = [];
private ?Throwable $previous = null;
/* 继承的方法 */
final public Exception::getMessage(): string
final public Exception::getCode(): int
final public Exception::getFile(): string
final public Exception::getLine(): int
final public Exception::getTrace(): array
final public Exception::getTraceAsString(): string
public Exception::__toString(): string
private Exception::__clone(): void
}
add a noteadd a note

User Contributed Notes 3 notes

up
2
sricharan dot krishnan at gmail dot com
5 years ago
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");
}
?>
up
-1
Dawid Krysiak
11 years ago
Direct known subclasses (following the java docs convention (: ):
OutOfBoundsException, OverflowException, RangeException, UnderflowException, UnexpectedValueException

官方地址:https://www.php.net/manual/en/class.runtimeexception.php

北京半月雨文化科技有限公司.版权所有 京ICP备12026184号-3