Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
SourceUrlException
n/a
0 / 0
n/a
0 / 0
1
n/a
0 / 0
 __construct
n/a
0 / 0
n/a
0 / 0
1
1<?php
2
3namespace FileImporter\Exceptions;
4
5/**
6 * Thrown in cases that the SourceUrl is not deemed to be acceptable.
7 *
8 * @license GPL-2.0-or-later
9 * @author Addshore
10 *
11 * @codeCoverageIgnore
12 */
13class SourceUrlException extends LocalizedImportException {
14
15    public function __construct() {
16        parent::__construct( 'fileimporter-cantimporturl' );
17    }
18
19}