Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

invalidargumentexception(3) [php man page]

INVALIDARGUMENTEXCEPTION(3)						 1					       INVALIDARGUMENTEXCEPTION(3)

The InvalidArgumentException class

INTRODUCTION
Exception thrown if an argument is not of the expected type. CLASS SYNOPSIS
InvalidArgumentException InvalidArgumentExceptionextends LogicException Inherited properties o protected string$message o protected int$code o protected string$file o protected int$line Inherited methods o finalpublic string Exception::getMessage (void ) o finalpublic Exception Exception::getPrevious (void ) o finalpublic mixed Exception::getCode (void ) o finalpublic string Exception::getFile (void ) o finalpublic int Exception::getLine (void ) o finalpublic array Exception::getTrace (void ) o finalpublic string Exception::getTraceAsString (void ) o public string Exception::__toString (void ) o finalprivate void Exception::__clone (void ) PHP Documentation Group INVALIDARGUMENTEXCEPTION(3)

Check Out this Related Man Page

ERROREXCEPTION(3)							 1							 ERROREXCEPTION(3)

ErrorException

INTRODUCTION
An Error Exception. CLASS SYNOPSIS
ErrorException ErrorExceptionextends Exception Properties o protected int$severity Inherited properties o protected string$message o protected int$code o protected string$file o protected int$line Methods o public ErrorException::__construct NULL ([string $message = ""], [int $code], [int $severity = 1], [string $filename = __FILE__], [int $lineno = __LINE__], [Exception $previous]) o finalpublic int ErrorException::getSeverity (void ) Inherited methods o finalpublic string Exception::getMessage (void ) o finalpublic Exception Exception::getPrevious (void ) o finalpublic mixed Exception::getCode (void ) o finalpublic string Exception::getFile (void ) o finalpublic int Exception::getLine (void ) o finalpublic array Exception::getTrace (void ) o finalpublic string Exception::getTraceAsString (void ) o public string Exception::__toString (void ) o finalprivate void Exception::__clone (void ) PROPERTIES
o $severity -The severity of the exception EXAMPLES
Example #1 Use set_error_handler(3) to change error messages into ErrorException. <?php function exception_error_handler($severity, $message, $file, $line) { if (!(error_reporting() & $severity)) { // This error code is not included in error_reporting return; } throw new ErrorException($message, 0, $severity, $file, $line); } set_error_handler("exception_error_handler"); /* Trigger exception */ strpos(); ?> The above example will output something similar to: Fatal error: Uncaught exception 'ErrorException' with message 'strpos() expects at least 2 parameters, 0 given' in /home/bjori/tmp/ex.php:12 Stack trace: #0 [internal function]: exception_error_handler(2, 'strpos() expect...', '/home/bjori/php...', 12, Array) #1 /home/bjori/php/cleandocs/test.php(12): strpos() #2 {main} thrown in /home/bjori/tmp/ex.php on line 12 PHP Documentation Group ERROREXCEPTION(3)
Man Page