Exception.php 400 Bytes
<?php
    
    namespace artbox\odoo\components;
    
    /**
     * Exception represents an exception that is caused by some Odoo-related operations.
     */
    class Exception extends \yii\base\Exception
    {
        /**
         * @return string the user-friendly name of this exception
         */
        public function getName()
        {
            return 'Odoo Exception';
        }
    }