yii2-arangodb/Exception.php

15 lines
243 B
PHP
Raw Normal View History

2014-07-29 13:33:21 +08:00
<?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';
}
}