File "class-lp-exception.php"
Full Path: /home/ubunrgit/public_html/wp-content/plugins/learnpress/inc/class-lp-exception.php
File size: 198 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
class LP_Exception extends Exception {
public function __construct( $message = '', $code = '', Throwable $previous = null ) {
parent::__construct( $message, (int) $code, $previous );
}
}