lychee/php/Access/Access.php

15 lines
203 B
PHP
Raw Normal View History

2014-04-28 09:23:18 +00:00
<?php
namespace Lychee\Access;
2014-04-28 09:23:18 +00:00
abstract class Access {
2014-04-28 09:23:18 +00:00
final private static function fnNotFound() {
exit('Error: Function not found! Please check the spelling of the called function.');
}
2014-04-28 09:23:18 +00:00
}
?>