1
0
mirror of synced 2024-12-13 22:56:04 +03:00
doctrine2/lib/Doctrine/Common/DoctrineException.php

47 lines
1.4 KiB
PHP
Raw Normal View History

2008-09-12 17:08:01 +04:00
<?php
namespace Doctrine\Common;
class DoctrineException extends \Exception
2008-09-12 17:08:01 +04:00
{
private $_innerException;
private static $_messages = array();
2008-09-12 17:08:01 +04:00
public function __construct($message = "", Exception $innerException = null)
{
parent::__construct($message);
$this->_innerException = $innerException;
}
public function getInnerException()
{
return $this->_innerException;
}
public static function notImplemented($method, $class)
{
return new self("The method '$method' is not implemented in class '$class'.");
2008-09-12 17:08:01 +04:00
}
public static function __callStatic($method, $arguments)
{
$end = end($arguments);
if ($end instanceof Exception) {
$this->_innerException = $end;
unset($arguments[count($arguments) - 1]);
}
if (isset(self::$_messages[$method])) {
$message = sprintf(self::$_messages[$method], $arguments);
} else {
$message = strtolower(preg_replace('~(?<=\\w)([A-Z])~', '_$1', $method));
$message = ucfirst(str_replace('_', ' ', $message));
$args = array();
foreach ($arguments as $argument) {
$args[] = var_export($argument, true);
}
$message .= ' (' . implode(', ', $args) . ')';
}
return new self($message);
}
}