Kohana_Exception
Exception

Class Contents

Class declared in SYSPATH/classes/kohana/exception.php on line 11.

Methods

public __construct( )
Kohana_Exception

Source Code
public function __construct($message, array $variables = NULL, $code = 0)
{
	// Set the message
	$message = __($message, $variables);

	// Pass the message to the parent
	parent::__construct($message, $code);
}

public __toString( )
Kohana_Exception

Source Code
public function __toString()
{
	return Kohana::exception_text($this);
}

final private __clone( )
Exception

final private __clone( )
Exception

public __construct( )
Kohana_Exception

Source Code
public function __construct($message, array $variables = NULL, $code = 0)
{
	// Set the message
	$message = __($message, $variables);

	// Pass the message to the parent
	parent::__construct($message, $code);
}

public __toString( )
Kohana_Exception

Source Code
public function __toString()
{
	return Kohana::exception_text($this);
}

final public getCode( )
Exception

final public getCode( )
Exception

final public getFile( )
Exception

final public getFile( )
Exception

final public getLine( )
Exception

final public getLine( )
Exception

final public getMessage( )
Exception

final public getMessage( )
Exception

final public getTrace( )
Exception

final public getTrace( )
Exception

final public getTraceAsString( )
Exception

final public getTraceAsString( )
Exception