blob: d5ca735e9d15f6f2bc5d911790ef91176c4cfe1a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<?php
// File: FatalRuntimeError.php
// Namespace: kch42\ste
namespace kch42\ste;
/*
* Class: FatalRuntimeError
* 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 {}
|