phug-php/ast

View on GitHub
AstException.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php
 
namespace Phug;
 
use RuntimeException;
 
/**
* Represents an exception that is thrown during tree-manipulation processes.
*/
class AstException extends RuntimeException
{
}