Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
M
mongo-php-library
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
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
sinan
mongo-php-library
Commits
c4f1c899
Commit
c4f1c899
authored
May 12, 2015
by
Jeremy Mikola
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
PHPLIB-83: Extend driver exceptions
parent
dd1a781e
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
Exception.php
src/Exception/Exception.php
+1
-1
InvalidArgumentException.php
src/Exception/InvalidArgumentException.php
+1
-1
RuntimeException.php
src/Exception/RuntimeException.php
+1
-1
UnexpectedValueException.php
src/Exception/UnexpectedValueException.php
+1
-1
No files found.
src/Exception/Exception.php
View file @
c4f1c899
...
@@ -2,6 +2,6 @@
...
@@ -2,6 +2,6 @@
namespace
MongoDB\Exception
;
namespace
MongoDB\Exception
;
interface
Exception
interface
Exception
extends
\MongoDB\Driver\Exception\Exception
{
{
}
}
src/Exception/InvalidArgumentException.php
View file @
c4f1c899
...
@@ -2,6 +2,6 @@
...
@@ -2,6 +2,6 @@
namespace
MongoDB\Exception
;
namespace
MongoDB\Exception
;
class
InvalidArgumentException
extends
\InvalidArgumentException
implements
Exception
class
InvalidArgumentException
extends
\
MongoDB\Driver\Exception\
InvalidArgumentException
implements
Exception
{
{
}
}
src/Exception/RuntimeException.php
View file @
c4f1c899
...
@@ -2,6 +2,6 @@
...
@@ -2,6 +2,6 @@
namespace
MongoDB\Exception
;
namespace
MongoDB\Exception
;
class
RuntimeException
extends
\RuntimeException
implements
Exception
class
RuntimeException
extends
\
MongoDB\Driver\Exception\
RuntimeException
implements
Exception
{
{
}
}
src/Exception/UnexpectedValueException.php
View file @
c4f1c899
...
@@ -2,6 +2,6 @@
...
@@ -2,6 +2,6 @@
namespace
MongoDB\Exception
;
namespace
MongoDB\Exception
;
class
UnexpectedValueException
extends
\UnexpectedValueException
implements
Exception
class
UnexpectedValueException
extends
\
MongoDB\Driver\Exception\
UnexpectedValueException
implements
Exception
{
{
}
}
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