wp_back/wp-content/plugins/easy-post-views-count/freemius/includes/sdk/Exceptions/OAuthException.php

17 lines
349 B
PHP
Raw Normal View History

2024-05-20 15:37:46 +03:00
<?php
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
if ( ! class_exists( 'Freemius_Exception' ) ) {
exit;
}
if ( ! class_exists( 'Freemius_OAuthException' ) ) {
class Freemius_OAuthException extends Freemius_Exception {
public function __construct( $pResult ) {
parent::__construct( $pResult );
}
}
}