mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
8dd644d25d
Namespace all templates Move difflib and BBCodeParser2 to thirdparty Remove deprecated API marked for removal in 4.0
27 lines
547 B
PHP
27 lines
547 B
PHP
<?php
|
|
|
|
namespace SilverStripe\Core\Config;
|
|
|
|
use Exception;
|
|
|
|
/**
|
|
* Exception thrown when the {@link SilverStripe\Core\Config\SS_DAG} class is unable to resolve sorting the DAG due
|
|
* to cyclic dependencies.
|
|
*/
|
|
class SS_DAG_CyclicException extends Exception
|
|
{
|
|
|
|
public $dag;
|
|
|
|
/**
|
|
* @param string $message The Exception message
|
|
* @param SS_DAG $dag The remainder of the Directed Acyclic Graph (DAG) after the last successful sort
|
|
*/
|
|
public function __construct($message, $dag)
|
|
{
|
|
$this->dag = $dag;
|
|
parent::__construct($message);
|
|
}
|
|
|
|
}
|