Browse
For agents
About
Plugin Check (PCP)
/
1.5.0
Plugin Check (PCP)
v1.5.0
Switch version
2.1.0
trunk
0.1
0.2.0
0.2.1
0.2.2
0.2.3
1.0.0
1.0.1
1.0.2
1.1.0
1.2.0
1.3.0
1.3.1
1.4.0
1.5.0
1.6.0
1.7.0
1.8.0
1.9.0
2.0.0
ci-artifacts
Overview
Code
plugin-check
/
includes
/
Checker
/
Exception
/
Invalid_Check_Slug_Exception.php
Invalid_Check_Slug_Exception.php
in Plugin Check (PCP) 1.5.0, at includes/Checker/Exception/Invalid_Check_Slug_Exception.php
20 lines
379 B
Find file
t
No matching file
Up and down to move
Enter to open
Esc to close
Raw
Download
Zip
View raw
1
<
?
php
2
/**
3
* Class WordPress\Plugin_Check\Checker\Exception\Invalid_Check_Slug_Exception
4
*
5
*
@package
plugin-check
6
*/
7
8
namespace
WordPress
\
Plugin_Check
\
Checker
\
Exception
;
9
10
use
InvalidArgumentException
;
11
12
/**
13
* Class for an exception thrown when an invalid check slug is provided.
14
*
15
*
@since
1.2.0
16
*/
17
class
Invalid_Check_Slug_Exception
extends
InvalidArgumentException
{
18
19
}
20