silverorange Code


Swat.SwatClassNotFoundException
/Swat/exceptions/SwatClassNotFoundException.php at line 14

Class SwatClassNotFoundException

Exception
└─SwatException
└─SwatClassNotFoundException

public class SwatClassNotFoundException
extends SwatException

Thrown when a class is not found

Copyright:
2005-2006 silverorange
License:
http://www.gnu.org/copyleft/lesser.html LGPL License 2.1

Field Summary
protected string

$class_name

The name of the class that is not found.

Fields inherited from Swat.SwatException
backtrace, class, displayer, logger
Constructor Summary

SwatClassNotFoundException(string message, integer code, string class_name)

Creates a new class not found exception.

Method Summary
string

getClassName()

Gets the name of the class that is not found.

Methods inherited from Swat.SwatException
display, displayStyleSheet, formatSensitiveParam, formatValue, getArguments, getClass, getSummary, handle, isSensitiveParameter, log, process, setDisplayer, setLogger, setupHandler, toString, toXHTML, wasHandled

Field Detail

/Swat/exceptions/SwatClassNotFoundException.php at line 23

class_name

protected string $class_name = null

The name of the class that is not found


Constructor Detail

/Swat/exceptions/SwatClassNotFoundException.php at line 35

SwatClassNotFoundException

public SwatClassNotFoundException(string message, integer code, string class_name)

Creates a new class not found exception

Parameters:
message - the message of the exception.
code - the code of the exception.
class_name - the name of the class that is not found.

Method Detail

/Swat/exceptions/SwatClassNotFoundException.php at line 49

getClassName

public string getClassName()

Gets the name of the class that is not found

Returns:
the name of the class that is not found.

silverorange Code