summaryrefslogtreecommitdiff
path: root/vendor/beberlei/assert/lib/Assert/AssertionFailedException.php
blob: e895aa8e54f8255c460553d32694ba7db59ff4cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?php

/**
 * Assert
 *
 * LICENSE
 *
 * This source file is subject to the MIT license that is bundled
 * with this package in the file LICENSE.txt.
 * If you did not receive a copy of the license and are unable to
 * obtain it through the world-wide-web, please send an email
 * to [email protected] so I can send you a copy immediately.
 */

namespace Assert;

use Throwable;

interface AssertionFailedException extends Throwable
{
    public function getPropertyPath();

    public function getValue();

    public function getConstraints();
}