1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<?php /** * WooCommerce Admin Notes Unavailable Exception Class * * Exception class thrown when an attempt to use notes is made but notes are unavailable. */
namespace Automattic\WooCommerce\Admin\Notes;
defined( 'ABSPATH' ) || exit;
/** * Notes\NotesUnavailableException class. */ class NotesUnavailableException extends \WC_Data_Exception {}
|