Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
50.00% covered (danger)
50.00%
1 / 2
n/a
0 / 0
CRAP
n/a
0 / 0
Rules_API_Exception
n/a
0 / 0
n/a
0 / 0
0
n/a
0 / 0
1<?php
2/**
3 * Rules API exception.
4 *
5 * @since 0.10.1
6 *
7 * @package automattic/jetpack-waf
8 */
9
10namespace Automattic\Jetpack\Waf;
11
12if ( ! defined( 'ABSPATH' ) ) {
13    exit( 0 );
14}
15
16/**
17 * Custom exception for WAF rules API errors.
18 */
19class Rules_API_Exception extends Waf_Exception {
20
21    /**
22     * Error slug which maps to WP_Error::$code.
23     *
24     * @var string
25     */
26    const SLUG = 'rules_api_error';
27}