50 lines
1.5 KiB
PHP
50 lines
1.5 KiB
PHP
<?php
|
|
/*************************************************************************************/
|
|
/* This file is part of the Thelia package. */
|
|
/* */
|
|
/* Copyright (c) OpenStudio */
|
|
/* email : dev@thelia.net */
|
|
/* web : http://www.thelia.net */
|
|
/* */
|
|
/* For the full copyright and license information, please view the LICENSE.txt */
|
|
/* file that was distributed with this source code. */
|
|
/*************************************************************************************/
|
|
|
|
|
|
namespace Comment\Exception;
|
|
|
|
|
|
/**
|
|
* Class InvalidDefinitionException
|
|
* @package Comment\Exception
|
|
* @author Julien Chanséaume <jchanseaume@openstudio.fr>
|
|
*/
|
|
class InvalidDefinitionException extends \RuntimeException
|
|
{
|
|
|
|
protected $silent = true;
|
|
|
|
public function __construct($message, $silent = true)
|
|
{
|
|
$this->silent = $silent;
|
|
|
|
parent::__construct($message);
|
|
}
|
|
|
|
/**
|
|
* @return boolean
|
|
*/
|
|
public function isSilent()
|
|
{
|
|
return $this->silent;
|
|
}
|
|
|
|
/**
|
|
* @param boolean $silent
|
|
*/
|
|
public function setSilent($silent)
|
|
{
|
|
$this->silent = $silent;
|
|
}
|
|
}
|