Browse
For agents
About
Copy Anything to Clipboard for WordPress – Copy Button, Copy Text & Copy Code
/
3.7.0
Copy Anything to Clipboard for WordPress – Copy Button, Copy Text & Copy Code
v3.7.0
Switch version
5.5.3
3.1.0
3.2.0
3.2.1
3.3.0
3.4.0
3.4.1
3.4.2
3.4.3
3.5.0
3.5.1
3.5.2
3.6.0
3.7.0
3.8.0
3.8.1
3.8.2
3.8.3
4.0.0
4.0.2
4.0.3
4.0.4
4.0.5
4.1.0
4.1.1
All 78 releases
Overview
Code
copy-the-code
/
classes
/
freemius
/
includes
/
sdk
/
Exceptions
/
EmptyArgumentException.php
EmptyArgumentException.php
in Copy Anything to Clipboard for WordPress – Copy Button, Copy Text & Copy Code 3.7.0, at classes/freemius/includes/sdk/Exceptions/EmptyArgumentException.php
14 lines
292 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
if
(
!
defined
(
'
ABSPATH
'
)
)
{
3
exit
;
4
}
5
6
if
(
!
class_exists
(
'
Freemius_InvalidArgumentException
'
)
)
{
7
exit
;
8
}
9
10
if
(
!
class_exists
(
'
Freemius_EmptyArgumentException
'
)
)
{
11
class
Freemius_EmptyArgumentException
extends
Freemius_InvalidArgumentException
{
12
}
13
}
14