summaryrefslogtreecommitdiff
path: root/src/ste/FatalRuntimeError.php
blob: 39bbd4460638f7e9273963f78caf2c76205c00b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
<?php

namespace r7r\ste;

/**
 * An Exception a tag can throw, if a fatal (irreparable) runtime error occurred.
 * This Exception will always "bubble up" so you probably want to catch them. Remember that this exception is also in the namespace ste!
 */
class FatalRuntimeError extends \Exception
{
}