1: <?php
2:
3: /**
4: * Avisota newsletter and mailing system
5: *
6: * PHP Version 5.3
7: *
8: * @copyright bit3 UG 2013
9: * @author Tristan Lins <tristan.lins@bit3.de>
10: * @package avisota-core
11: * @license LGPL-3.0+
12: * @link http://avisota.org
13: */
14:
15: namespace Avisota\Recipient;
16:
17: /**
18: * Exception if the data of a mutable recipient are invalid.
19: *
20: * @package avisota-core
21: */
22: class MutableRecipientDataException extends \RuntimeException
23: {
24: }