?? GreyFile — Mystic File Browser

Current path: home/webdevt/www/wdp/wp-content/plugins/caldera-forms/vendor/inpsyde/wonolog/src/Exception/



?? Go up: /home/webdevt/www/wdp/wp-content/plugins/caldera-forms/vendor/inpsyde/wonolog/src

?? Viewing: InvalidChannelNameException.php

<?php # -*- coding: utf-8 -*-
/*
 * This file is part of the Wonolog package.
 *
 * (c) Inpsyde GmbH
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

namespace Inpsyde\Wonolog\Exception;

use Inpsyde\Wonolog\Channels;

/**
 * @package wonolog
 * @license http://opensource.org/licenses/MIT MIT
 */
class InvalidChannelNameException extends \Exception {

	/**
	 * @param $value
	 *
	 * @return static
	 */
	public static function for_invalid_type( $value ) {

		return new static(
			sprintf(
				'Channel name must me in a string, %s received.',
				is_object( $value ) ? 'instance of ' . get_class( $value ) : gettype( $value )
			)
		);
	}

	/**
	 * @param string $channel
	 *
	 * @return static
	 */
	public static function for_unregistered_channel( $channel ) {

		return new static(
			sprintf(
				'%s is not a registered channel. Use "%s" filter hook to register custom channels',
				$channel,
				Channels::FILTER_CHANNELS
			)
		);
	}
}


??

??