13 lines
245 B
PHP
13 lines
245 B
PHP
<?php
|
|
|
|
/**
|
|
* @file
|
|
* Contains \Drupal\contact\MailHandlerException.
|
|
*/
|
|
|
|
namespace Drupal\contact;
|
|
|
|
/**
|
|
* Exception thrown by MailHandler when unable to determine message recipient.
|
|
*/
|
|
class MailHandlerException extends \RuntimeException {}
|