Exception.php #1

  • //
  • guest/
  • thomas_gray/
  • jambox/
  • main/
  • swarm/
  • library/
  • P4/
  • Exception.php
  • View
  • Commits
  • Open Download .zip Download (654 B)
<?php

namespace P4;

if (!class_exists('\P4\Exception', false)) {

    /**
     * Exception to be thrown when an error occurs in the P4 package.
     *
     * If using the p4php extension, this class is already defined. To avoid
     * redefinition errors, we only define the class if it doesn't already exist.
     *
     * @copyright   2011 Perforce Software. All rights reserved.
     * @license     Please see LICENSE.txt in top-level folder of this distribution.
     * @version     <release>/<patch>
     * @todo        Remove this generic exception and use more specific one instead.
     */
    class Exception extends \Exception
    {
    }

}
# Change User Description Committed
#1 18334 Liz Lam initial add of jambox