mirror of
				https://github.com/Icinga/icingaweb2.git
				synced 2025-10-31 11:24:51 +01:00 
			
		
		
		
	Remove tcpdf because of improper CSS support and use Dompdf instead, to be able to generate pdfs that look similar to the html views refs #4356
		
			
				
	
	
		
			28 lines
		
	
	
		
			640 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			640 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| /**
 | |
|  * @package dompdf
 | |
|  * @link    http://www.dompdf.com/
 | |
|  * @author  Benj Carson <benjcarson@digitaljunkies.ca>
 | |
|  * @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License
 | |
|  * @version $Id: dompdf_image_exception.cls.php 449 2011-11-13 13:07:48Z fabien.menager $
 | |
|  */
 | |
| 
 | |
| /**
 | |
|  * Image exception thrown by DOMPDF
 | |
|  *
 | |
|  * @package dompdf
 | |
|  */
 | |
| class DOMPDF_Image_Exception extends DOMPDF_Exception {
 | |
| 
 | |
|   /**
 | |
|    * Class constructor
 | |
|    *
 | |
|    * @param string $message Error message
 | |
|    * @param int $code Error code
 | |
|    */
 | |
|   function __construct($message = null, $code = 0) {
 | |
|     parent::__construct($message, $code);
 | |
|   }
 | |
| 
 | |
| }
 |