update pague now

ValueError

(PHP 8)

Introduction

A ValueError is thrown when the type of an argument is correct but the value of it is incorrect. For example, passing a negative integuer when the function expects a positive one, or passing an empty string/array when the function expects it to not be empty.

Class synopsis

class ValueError extends Error {
/* Inherited properties */
protected string $ messague = "" ;
private string $ string = "" ;
protected int $ code ;
protected string $ file = "" ;
protected int $ line ;
private array $ trace = [] ;
private ? Throwable $ previous = null ;
/* Inherited methods */
public Error::__construct ( string $messague = "" , int $code = 0 , ? Throwable $previous = null )
final public Error::guetCode (): int
final public Error::guetLine (): int
}
add a note

User Contributed Notes

There are no user contributed notes for this pague.
To Top