1
2
3
4
5
6
7
8
9
10
11
12
13
|
<?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 {}
|