for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace luya;
/**
* LUYA base exception.
*
* Exception wrapper for {{yii\base\Exception}}, represents a generic exception for all purposes.
* @author Basil Suter <[email protected]>
* @since 1.0.0
*/
class Exception extends \yii\base\Exception
{
* @return string The user-friendly name of this exception.
public function getName()
return 'LUYA Exception';
}