15 lines
243 B
PHP
15 lines
243 B
PHP
|
<?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';
|
||
|
}
|
||
|
}
|