Diff
Index: __construct.md
--- __construct.md (nonexistent)
+++ __construct.md (revision 4)
@@ -0,0 +1,35 @@
+
+# Exception::__construct
+
+### Usage
+
+> Exception::__construct([ string $message = '' ], [ int $code = '0' ], [ ?Throwable $previous = null ])
+
+### Description
+
+>
+
+### Parameters
+
+Parameter | Required | Type | Description
+------------- |------------- |------------- |-------------
+message | No | string |
+code | No | int |
+previous | No | ?Throwable |
+
+### Return
+>
+### See Also
+
+* __clone()
+* __toString()
+* __wakeup()
+* getCode()
+* getFile()
+* getLine()
+* getMessage()
+* getPrevious()
+* getTrace()
+* getTraceAsString()
+
+
Full Code
Exception::__construct
Usage
Exception::__construct([ string $message = '' ], [ int $code = '0' ], [ ?Throwable $previous = null ])
Description
Parameters
| Parameter |
Required |
Type |
Description |
| message |
No |
string |
|
| code |
No |
int |
|
| previous |
No |
?Throwable |
|
Return
See Also