\DatabaseException

This class extends Exception class to handler custom database exceptions

This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.

Summary

Methods
Properties
Constants
getInstance()
__construct()
__toString()
setCode()
setStatement()
No public properties found
No constants found
No protected methods found
$message
N/A
No private methods found
No private properties found
N/A

Properties

$message

$message : string

The default exception message

Type

string

Methods

getInstance()

getInstance(string  $message = null, integer  $code = null, \Exception  $previous = null) : \DatabaseException

Get the DatabaseException instance

Parameters

string $message

Exception message

integer $code

Exception error code

\Exception $previous

Previous exception

Returns

\DatabaseException

The instance of DatabaseException

__construct()

__construct(string  $message = null, integer  $code = null, \Exception  $previous = null) : \DatabaseException

Create a new object of DatabaseException

Parameters

string $message

The message

integer $code

The code

\Exception $previous

The previous exception

Throws

\DatabaseException

Returns

\DatabaseException

The instance of DatabaseException

__toString()

__toString() : string

Convert the object to string when using print methods

Returns

string

setCode()

setCode(string|integer  $code) : $this

Set the $code

Parameters

string|integer $code

The new code

Returns

$this

setStatement()

setStatement(string  $statement) : $this

Set the $statement

Parameters

string $statement

The statement

Returns

$this