Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
D
doctrine-dbal
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Tomáš Trávníček
doctrine-dbal
Commits
0223d7a4
Commit
0223d7a4
authored
Sep 12, 2008
by
romanb
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
moved Collection
parent
34c830e3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
21 deletions
+3
-21
ORMException.php
lib/Doctrine/ORM/Exceptions/ORMException.php
+3
-21
No files found.
lib/Doctrine/ORM/Exceptions/ORMException.php
View file @
0223d7a4
...
@@ -31,27 +31,9 @@
...
@@ -31,27 +31,9 @@
* @since 1.0
* @since 1.0
* @version $Revision: 4776 $
* @version $Revision: 4776 $
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
* @author Roman Borschel <roman@code-factory.org>
* @author Roman Borschel <roman@code-factory.org>
* @todo Rename to DoctrineException
*/
*/
class
Doctrine_ORM_Exceptions_ORMException
extends
Exception
class
Doctrine_ORM_Exceptions_ORMException
extends
Doctrine_Shared_Exceptions_DoctrineException
{
{
private
$_innerException
;
public
function
__construct
(
$message
=
""
,
Exception
$innerException
=
null
)
{
parent
::
__construct
(
$message
);
$this
->
_innerException
=
$innerException
;
}
public
function
getInnerException
()
{
return
$this
->
_innerException
;
}
public
static
function
notYetImplemented
(
$method
,
$class
)
{
return
new
self
(
"The method '
$method
' is not implemented in the class '
$class
'."
);
}
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment