Logo white

Yarik / artbox-odoo

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • artbox-odoo
  • components
  • Exception.php
  • Odoo completed
    714f42c5
    Yarik authored
    2017-06-21 18:23:52 +0300  
    Browse Code ยป
Exception.php 400 Bytes
Edit Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
<?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';
        }
    }