14 lines
289 B
PHP
14 lines
289 B
PHP
<?php
|
|
|
|
namespace Civi\Mailinglistsync\Exceptions;
|
|
|
|
/**
|
|
* A simple custom error indicating a problem with the synchronization of
|
|
* contacts.
|
|
*/
|
|
class ContactSyncException extends BaseException {
|
|
|
|
public const ERROR_CODE_MISSING_RECIPIENT_ATTRIBUTE = 'missing_recipient_attribute';
|
|
|
|
}
|
|
|