arango recode

This commit is contained in:
evgen-d
2014-07-29 09:33:21 +04:00
parent 12c3862177
commit 4bb94c60c6
12 changed files with 1607 additions and 331 deletions

14
Exception.php Normal file
View File

@@ -0,0 +1,14 @@
<?php
namespace devgroup\arangodb;
class Exception extends \yii\base\Exception
{
/**
* @return string the user-friendly name of this exception
*/
public function getName()
{
return 'ArangoDB Exception';
}
}