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