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

namespace kch42\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
{
}