13 lines
269 B
PHP
13 lines
269 B
PHP
<?php
|
|
|
|
namespace AutomateWoo\Exceptions;
|
|
|
|
/**
|
|
* AutomateWoo User Facing Exception Interface.
|
|
*
|
|
* User facing exceptions should have translatable messages.
|
|
*
|
|
* @since 4.9.0
|
|
* @package AutomateWoo\Exceptions
|
|
*/
|
|
interface UserFacingException extends Exception {}
|