Skip to content
Snippets Groups Projects
Commit 3dc31f3a authored by Olav Morken's avatar Olav Morken
Browse files

SimpleSAML_Error_Error: Remove unused $this->cause.

git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@2526 44740490-163a-0410-bde0-09ae8108e29a
parent 0ee87b68
No related branches found
No related tags found
No related merge requests found
...@@ -26,12 +26,6 @@ class SimpleSAML_Error_Error extends SimpleSAML_Error_Exception { ...@@ -26,12 +26,6 @@ class SimpleSAML_Error_Error extends SimpleSAML_Error_Exception {
private $parameters; private $parameters;
/**
* The exception which caused this error.
*/
private $cause;
/** /**
* Constructor for this error. * Constructor for this error.
* *
...@@ -68,8 +62,6 @@ class SimpleSAML_Error_Error extends SimpleSAML_Error_Exception { ...@@ -68,8 +62,6 @@ class SimpleSAML_Error_Error extends SimpleSAML_Error_Exception {
$msg = $this->errorCode; $msg = $this->errorCode;
} }
parent::__construct($msg, -1, $cause); parent::__construct($msg, -1, $cause);
$this->cause = $cause;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment