1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94
|
<?xml version="1.0" encoding="UTF-8" ?>
<class xmlns="http://xml.phpdox.net/src" full="Error" namespace="" name="Error">
<member name="message" static="false" visibility="protected">
<default>null</default>
<docblock>
<description compact="The error message"/>
<var type="string"/>
</docblock>
</member>
<member name="code" static="false" visibility="protected">
<default>null</default>
<docblock>
<description compact="The error code"/>
<var type="int"/>
</docblock>
</member>
<member name="file" static="false" visibility="protected">
<default>null</default>
<docblock>
<description compact="The filename where the error happened"/>
<var type="string"/>
</docblock>
</member>
<member name="line" static="false" visibility="protected">
<default>null</default>
<docblock>
<description compact="The line where the error happened"/>
<var type="int"/>
</docblock>
</member>
<constructor name="__construct" abstract="false" static="false" visibility="public" final="false">
<docblock>
<description compact="Construct the error object"/>
<return type="void"/>
</docblock>
<parameter name="message" optional="true" byreference="false" type="string"/>
<parameter name="code" optional="true" byreference="false" type="int"/>
<parameter name="previous" optional="true" byreference="false" type="object" class="Throwable"/>
</constructor>
<method name="getMessage" abstract="false" static="false" visibility="public" final="true">
<docblock>
<description compact="Gets the error message"/>
<return type="string"/>
</docblock>
</method>
<method name="getPrevious" abstract="false" static="false" visibility="public" final="true">
<docblock>
<description compact="Returns previous Throwable"/>
<return type="Throwable"/>
</docblock>
</method>
<method name="getCode" abstract="false" static="false" visibility="public" final="true">
<docblock>
<description compact="Gets the error code"/>
<return type="mixed"/>
</docblock>
</method>
<method name="getFile" abstract="false" static="false" visibility="public" final="true">
<docblock>
<description compact="Gets the file in which the error occurred"/>
<return type="string"/>
</docblock>
</method>
<method name="getLine" abstract="false" static="false" visibility="public" final="true">
<docblock>
<description compact="Gets the line in which the error occurred"/>
<return type="int"/>
</docblock>
</method>
<method name="getTrace" abstract="false" static="false" visibility="public" final="true">
<docblock>
<description compact="Gets the stack trace"/>
<return type="array"/>
</docblock>
</method>
<method name="getTraceAsString" abstract="false" static="false" visibility="public" final="true">
<docblock>
<description compact="Gets the stack trace as a string"/>
<return type="string"/>
</docblock>
</method>
<method name="__toString" abstract="false" static="false" visibility="public" final="false">
<docblock>
<description compact="String representation of the error"/>
<return type="string"/>
</docblock>
</method>
<method name="__clone" abstract="false" static="false" final="true">
<docblock>
<description compact="Clone the error"/>
<return type="void"/>
</docblock>
</method>
</class>
|