Browse
For agents
About
Tableberg – Simple Gutenberg Table Block
/
0.5.7
Tableberg – Simple Gutenberg Table Block
v0.5.7
Switch version
1.1.5
1.1.4
1.1.3
1.1.2
1.1.1
1.1.0
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
trunk
0.0.2
0.2.1
0.3.2
0.3.3
0.4.1
0.5.0
0.5.1
0.5.2
0.5.3
0.5.4
0.5.5
0.5.6
0.5.7
All 42 releases
Overview
Code
tableberg
/
includes
/
freemius
/
includes
/
sdk
/
Exceptions
/
EmptyArgumentException.php
EmptyArgumentException.php
in Tableberg – Simple Gutenberg Table Block 0.5.7, at includes/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