Browse
For agents
About
Passster – Password Protect Pages and Content
/
4.2.12
Passster – Password Protect Pages and Content
v4.2.12
Switch version
4.3.16
4.3.15
4.3.14
4.3.12
4.3.13
4.3.11
4.3.10
4.3.9
4.3.8
4.3.7
4.3.6
4.3.5
trunk
3.5.4
3.5.5.2
3.5.5.8
3.5.5.9
4.0
4.1.4
4.2.10
4.2.11
4.2.12
4.2.13
4.2.14
4.2.15
All 48 releases
Overview
Code
content-protector
/
inc
/
freemius
/
includes
/
sdk
/
Exceptions
/
EmptyArgumentException.php
EmptyArgumentException.php
in Passster – Password Protect Pages and Content 4.2.12, at inc/freemius/includes/sdk/Exceptions/EmptyArgumentException.php
14 lines
305 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