Browse
For agents
About
bBlocks – Essential Gutenberg Blocks & Patterns Collection
/
trunk
bBlocks – Essential Gutenberg Blocks & Patterns Collection
vtrunk
Switch version
2.1.6
2.1.5
2.1.4
2.1.3
2.1.2
2.1.1
2.1.0
2.0.43
2.0.42
2.0.41
2.0.40
2.0.39
2.0.38
trunk
1.0
1.1
1.2
1.3
1.4
1.5
1.5.1
1.5.2
1.5.3
1.5.4
1.5.5
All 106 releases
Overview
Code
b-blocks
/
freemius
/
includes
/
sdk
/
Exceptions
/
OAuthException.php
OAuthException.php
in bBlocks – Essential Gutenberg Blocks & Patterns Collection trunk, at freemius/includes/sdk/Exceptions/OAuthException.php
17 lines
349 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_Exception
'
)
)
{
7
exit
;
8
}
9
10
if
(
!
class_exists
(
'
Freemius_OAuthException
'
)
)
{
11
class
Freemius_OAuthException
extends
Freemius_Exception
{
12
public
function
__construct
(
$
pResult
)
{
13
parent
::
__construct
(
$
pResult
)
;
14
}
15
}
16
}
17