Files
wp-multisite-waas/inc/sso/exception/class-sso-session-exception.php
2024-11-30 18:24:12 -07:00

21 lines
398 B
PHP

<?php
/**
* The SSO Session Exception.
*
* @package WP_Ultimo
* @subpackage SSO\Exception
* @since 2.0.11
*/
namespace WP_Ultimo\SSO\Exception;
// Exit if accessed directly
defined('ABSPATH') || exit;
/**
* Thrown when our session handler implementation fails somewhere.
*
* @since 2.0.11
*/
class SSO_Session_Exception extends \RuntimeException {} // end class SSO_Session_Exception;