<?php 
 
/* 
 * Queasy PHP Framework - Configuration 
 * 
 * (c) Vitaly Demyanenko <[email protected]> 
 * 
 * For the full copyright and license information, please view the LICENSE file that was distributed with this source code. 
 */ 
 
namespace queasy\config\loader; 
 
use queasy\config\ConfigException; 
 
/** 
 * Configuration loader exception class 
 */ 
class ConfigLoaderException extends ConfigException 
{ 
} 
 
 
 |