Files
yii2-arangodb/Exception.php
Ilya Rumyancev (MacBook) 9f02264965 refactoring
2017-04-14 00:44:05 +03:00

15 lines
247 B
PHP

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