views_data_export_pdf_conversion_exception.inc in Views Data Export PDF 7
Same filename and directory in other branches
Contains the PDF conversion exception class.
File
src/views_data_export_pdf_conversion_exception.incView source
<?php
/**
* @file
* Contains the PDF conversion exception class.
*/
class views_data_export_pdf_conversion_exception extends Exception {
/**
* Constructor for views_data_export_pdf_conversion_exception.
*
* @param string $message [optional]
* The Exception message to throw.
* @param int $code [optional]
* The Exception code.
* @param Throwable $previous [optional]
* The previous throwable used for the exception chaining.
*/
public function __construct(string $message = "PDF conversion failed.", int $code = 0, Throwable $previous = null) {
parent::__construct($message, $code, $previous);
}
}
Classes
Name![]() |
Description |
---|---|
views_data_export_pdf_conversion_exception | @file Contains the PDF conversion exception class. |