Browse
For agents
About
Content Blocks Builder – Create blocks, repeater blocks with carousel, grid, popup layouts
/
2.8.7
Content Blocks Builder – Create blocks, repeater blocks with carousel, grid, popup layouts
v2.8.7
Switch version
2.8.14
2.8.13
2.8.12
2.7.5
2.7.6
2.7.7
2.7.8
2.7.9
2.8.0
2.8.1
2.8.10
2.8.11
2.8.2
2.8.3
2.8.4
2.8.5
2.8.6
2.8.7
2.8.8
2.8.9
trunk
1.0.1
1.0.2
1.1.0
1.1.1
All 147 releases
Overview
Code
content-blocks-builder
/
vendor
/
freemius
/
includes
/
sdk
/
Exceptions
/
OAuthException.php
OAuthException.php
in Content Blocks Builder – Create blocks, repeater blocks with carousel, grid, popup layouts 2.8.7, at vendor/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