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
cda9c1ba
Commit
cda9c1ba
authored
Mar 05, 2010
by
romanb
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[2.0] Missing files from last commit.
parent
df6ca602
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
48 additions
and
0 deletions
+48
-0
CommonException.php
lib/Doctrine/Common/CommonException.php
+11
-0
ProxyException.php
lib/Doctrine/ORM/Proxy/ProxyException.php
+15
-0
ExportException.php
lib/Doctrine/ORM/Tools/Export/ExportException.php
+13
-0
ToolsException.php
lib/Doctrine/ORM/Tools/ToolsException.php
+9
-0
No files found.
lib/Doctrine/Common/CommonException.php
0 → 100644
View file @
cda9c1ba
<?php
namespace
Doctrine\Common
;
/**
* Base exception class for package Doctrine\Common
* @author heinrich
*
*/
class
CommonException
extends
\Exception
{
}
\ No newline at end of file
lib/Doctrine/ORM/Proxy/ProxyException.php
0 → 100644
View file @
cda9c1ba
<?php
namespace
Doctrine\ORM\Proxy
;
class
ProxyException
extends
Doctrine\ORM\ORMException
{
public
static
function
proxyDirectoryRequired
()
{
return
new
self
(
"You must configure a proxy directory. See docs for details"
);
}
public
static
function
proxyNamespaceRequired
()
{
return
new
self
(
"You must configure a proxy namespace. See docs for details"
);
}
}
\ No newline at end of file
lib/Doctrine/ORM/Tools/Export/ExportException.php
0 → 100644
View file @
cda9c1ba
<?php
namespace
Doctrine\ORM\Tools\Export
;
class
ExportException
extends
ORMException
{
public
static
function
invalidExporterDriverType
(
$type
)
{
return
new
self
(
"The specified export driver '
$type
' does not exist"
);
}
public
static
function
invalidMappingDriverType
(
$type
)
{
return
new
self
(
"The mapping driver '
$type
' does not exist"
);
}
}
\ No newline at end of file
lib/Doctrine/ORM/Tools/ToolsException.php
0 → 100644
View file @
cda9c1ba
<?php
namespace
Doctrine\ORM\Tools
;
class
ToolsException
extends
ORMException
{
public
static
function
couldNotMapDoctrine1Type
(
$type
)
{
return
new
self
(
"Could not map doctrine 1 type '
$type
'!"
);
}
}
\ No newline at end of file
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