# content-protector/4.3.16/inc/freemius/includes/sdk/Exceptions/OAuthException.php

Passster – Password Protect Pages and Content, version 4.3.16. 17 lines.

- Page: https://pluginprobe.com/plugins/content-protector/4.3.16/code/inc/freemius/includes/sdk/Exceptions/OAuthException.php
- Raw: https://pluginprobe.com/plugins/content-protector/4.3.16/raw/inc/freemius/includes/sdk/Exceptions/OAuthException.php
- Modified: 2026-09-18T11:57:36+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/content-protector/4.3.16/code/inc/freemius/includes/sdk/Exceptions/OAuthException.php#L10-L20`.

```php
<?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 );
			}
		}
	}

```
