FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
pinterest-for-woocommerce
/
src
/
Exception
Edit File: PinterestException.php
<?php /** * PinterestException interface. * * @package Automattic\WooCommerce\Pinterest\Exception */ declare( strict_types=1 ); namespace Automattic\WooCommerce\Pinterest\Exception; use Throwable; /** * This interface is used for all of our exceptions so that we can easily catch only our own exceptions. */ interface PinterestException extends Throwable {}
Save
Back