Home
last modified time | relevance | path

Searched refs:ExportException (Results 1 – 10 of 10) sorted by relevance

/plugin/dw2pdf/src/
H A DPdfExportService.php53 * @throws ExportException When the collector yields no pages to export
71 * @throws ExportException When the collector yields no pages to export
112 * @throws ExportException When the collector yields no pages to export
132 * @throws ExportException When the collector yields no pages to export
148 * @throws ExportException When the collector yields no pages to export
162 ? new ExportException('empty')
163 : new ExportException('forbidden');
H A DPageCollector.php9 * @throws ExportException When no page is given or the requested page does not exist
15 throw new ExportException('empty');
20 throw new ExportException('notexist');
H A DCollectorFactory.php14 * @throws ExportException If a book export is requested without a selection
31 throw new ExportException('empty'); // book export without a selection
H A DNamespaceCollector.php20 * @throws ExportException When the requested namespace does not exist
35 if (!@is_dir($nsdir)) throw new ExportException('needns');
41 * @throws ExportException When the requested namespace does not exist
H A DExportException.php12 class ExportException extends \Exception class
/plugin/dw2pdf/_test/
H A DExportFeedbackTest.php8 use dokuwiki\plugin\dw2pdf\src\ExportException; alias
110 } catch (ExportException $e) {
123 $this->expectException(ExportException::class);
H A DPageCollectorTest.php6 use dokuwiki\plugin\dw2pdf\src\ExportException; alias
47 $this->expectException(ExportException::class);
H A DNamespaceCollectorCollectTest.php6 use dokuwiki\plugin\dw2pdf\src\ExportException; alias
55 $this->expectException(ExportException::class);
H A DCollectorFactoryTest.php9 use dokuwiki\plugin\dw2pdf\src\ExportException; alias
82 $this->expectException(ExportException::class);
/plugin/dw2pdf/
H A Daction.php11 use dokuwiki\plugin\dw2pdf\src\ExportException; alias
75 } catch (ExportException $e) {