phergie/phergie-irc-client-react

View on GitHub
src/Exception.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php
/**
 * Phergie (http://phergie.org)
 *
 * @link http://github.com/phergie/phergie-irc-client-react for the canonical source repository
 * @copyright Copyright (c) 2008-2014 Phergie Development Team (http://phergie.org)
 * @license http://phergie.org/license Simplified BSD License
 * @package Phergie\Irc
 */

namespace Phergie\Irc\Client\React;

/**
 * React client exception.
 *
 * @category Phergie
 * @package Phergie\Irc
 */
class Exception extends \Exception
{
    /**
     * An attempt to establish a connection to a server failed
     */
    const ERR_CONNECTION_ATTEMPT_FAILED = 1;

    /**
     * A connection has an unsupported configuration state
     */
    const ERR_CONNECTION_STATE_UNSUPPORTED = 2;
}