14 lines
304 B
PHP
14 lines
304 B
PHP
<?php
|
|
|
|
namespace Civi\Mailinglistsync\Exceptions;
|
|
|
|
/**
|
|
* A simple custom error indicating a problem with the validation of the
|
|
* synchronization of mailing lists.
|
|
*/
|
|
class MailinglistSyncException extends BaseException {
|
|
|
|
public const ERROR_CODE_UNSERIALIZE_SINGLETON = 'unserialize_singleton';
|
|
|
|
}
|
|
|