2026-03-26 12:07:55 +00:00

25 lines
440 B
PHP

<?php
/**
* Simply Schedule Appointments Exception.
*
* @since 1.0.1
* @package Simply_Schedule_Appointments
*/
/**
* Simply Schedule Appointments Exception.
*
* @since 1.0.1
*/
class SSA_Exception extends Exception {
public $feature;
protected $code;
public function __construct( string $message = null, string $code = null ) {
}
}
class SSA_Mailchimp_Exception extends SSA_Exception {
public $feature = 'mailchimp';
}