2014-04-28 09:23:18 +00:00
|
|
|
<?php
|
|
|
|
|
2016-01-26 14:31:53 +00:00
|
|
|
namespace Lychee\Access;
|
2014-04-28 09:23:18 +00:00
|
|
|
|
2016-01-30 20:33:31 +00:00
|
|
|
abstract class Access {
|
2014-04-28 09:23:18 +00:00
|
|
|
|
2016-01-30 20:33:31 +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
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
?>
|