Files
luos/thirdparty/html2ps_pdf/error.php

9 lines
191 B
PHP
Raw Normal View History

2010-12-02 23:34:41 +00:00
<?php
if (!function_exists('error_no_method')) {
function error_no_method($method, $class) {
die(sprintf("Error: unoverridden '%s' method called in '%s'", $method, $class));
}
};
?>