WpWodify\Exception
Exception Class
- Author: Cory Collier <corycollier@corycollier.com>
Synopsis
class Exception
extends ErrorException
{
- // Inherited members from ErrorException
- protected $severity;
- protected $message;
- protected $code;
- protected $file;
- protected $line;
- // Inherited members from Exception
- protected $message;
- protected $code;
- protected $file;
- protected $line;
- // Inherited methods from ErrorException
- public void __construct()
- public final int getSeverity()
- public final string getMessage()
- public final Exception getPrevious()
- public final mixed getCode()
- public final string getFile()
- public final int getLine()
- public final array getTrace()
- public final string getTraceAsString()
- public string __toString()
- // Inherited methods from Exception
- public void __construct()
- public final string getMessage()
- public final Exception getPrevious()
- public final mixed getCode()
- public final string getFile()
- public final int getLine()
- public final array getTrace()
- public final string getTraceAsString()
- public string __toString()
Hierarchy
Extends
Coverage
Methods | 0% | 0 / 0 |
Lines | 0% | 0 / 0 |
Members
protected
- $code
—
int
The exception code - $code
—
int
The exception code - $file
—
string
The filename where the exception was created - $file
—
string
The filename where the exception was created - $line
—
int
The line where the exception was created - $line
—
int
The line where the exception was created - $message
—
string
The exception message - $message
—
string
The exception message - $severity
—
int
The severity of the exception
Methods
Inherited from ErrorException
public
- __toString()
- getCode()
- getFile()
- getLine()
- getMessage()
- getPrevious()
- getSeverity() — Gets the exception severity
- getTrace()
- getTraceAsString()
Inherited from Exception
public
- __toString() — String representation of the exception
- getCode() — Gets the Exception code
- getFile() — Gets the file in which the exception occurred
- getLine() — Gets the line in which the exception occurred
- getMessage() — Gets the Exception message
- getPrevious() — Returns previous Exception
- getTrace() — Gets the stack trace
- getTraceAsString() — Gets the stack trace as a string
History
-
2015-12-31T05:49:44-05:00 (commit #307c02c)
Author: Cory Collier (corycollier@corycollier.com) / Commiter: Cory Collier (corycollier@corycollier.com)
Moving classes around to conform with WP coding standards regarding the naming convention of class files
-
2015-12-31T05:47:14-05:00 (commit #43a6d30)
Author: Cory Collier (corycollier@corycollier.com) / Commiter: Cory Collier (corycollier@corycollier.com)
Adding an Overlord (to rule all things), and a loader class. Also introducting an installer class. Updating other code to conform to WP coding standards (which, I personally don't agree with, but hey, whatevs)
-
2015-12-31T05:01:32-05:00 (commit #dc865c1)
Author: Cory Collier (corycollier@corycollier.com) / Commiter: Cory Collier (corycollier@corycollier.com)
Wordpress coding standards updates. Changing the base class for exceptions to ErrorException
-
2015-12-30T17:20:06-05:00 (commit #4e6c550)
Author: Cory Collier (corycollier@corycollier.com) / Commiter: Cory Collier (corycollier@corycollier.com)
First commit of the major rewrite. Changing to a composer-type package setup. Will be much more OO oriented