yii2-arangodb/Exception.php

15 lines
247 B
PHP
Raw Normal View History

2014-07-29 13:33:21 +08:00
<?php
2017-04-14 04:44:05 +07:00
namespace explosivebit\arangodb;
2014-07-29 13:33:21 +08:00
class Exception extends \yii\base\Exception
{
/**
* @return string the user-friendly name of this exception
*/
public function getName()
{
return 'ArangoDB Exception';
}
}